Mobile view.

Posted in: Newspaper
Post count: 9

Hi,

it my first experience with Newspaper and I like it!. Anyway, I am just confusing about Mobile view. So yeah!
I create my pages and blocks by visual composer.

the view from Pc
https://imgur.com/a/AnolXz5 (full row stretch)

but in mobile view
https://imgur.com/a/SsaAQNp ( Not full row stretch)

I want know how to keep the background image full stretched in mobile view such as the desktop view.

the block setting :
https://imgur.com/a/YDwgAVK

My website :- https://www.iraqcoders.com

Regards

Post count: 35449

Hi,

In mobile view is set some padding

Add this css and the mobile view fill be full width for all elements
https://www.screencast.com/t/5zy8ppxa5C
@media (max-width: 767px){
.td-container, .tdc-row {
padding-left: 0px;
padding-right: 0px;
}
}

Or if you want to show only the elements set to full width please add this custom css
@media (max-width: 767px){
.stretch_row_content{
padding-left: 0px;
padding-right: 0px;
}
}

Paste the code in Newspaper>Theme panel>Custom code>Custom css

Thank you.

Post count: 9

Thanks Man!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.