Site logo

Archived topic

Change width of Template

1 reply · Started by Dikson on November 23, 2021

Viewing posts 1–2 of 2

Hi,

I would like to change width of a template for example this link on a mobile phone Template. On mobile it looks really compact. The template is not pre-built but automatically generated.How can adjust the height and width of this specific "event" template for just mobile

Hi there,

you can try this CSS to remove the padding from the single event template:

@media(max-width: 768px) {
    .single-event_listing .inside-article {
        padding-left: 0px;
        padding-right: 0px;
        overflow-x: hidden;
    }
}
This archived topic is closed to new replies.