Hide Big Slide On Mobile

Posted in: Newspaper
Post count: 131

Hi…

I would like to hide the Big Slider for mobile devices with lower width than 480px…. Please let me know the CSS code either the custom codes…

Thanks!

Post count: 7909

Hi,

Please try this custom css:

@media(max-width:479px){
.td_block_big_grid{
display: none;
}
}

Thanks!

Post count: 131

Hi.. Thanks!

But after removing the slider their is spacing between the sticky header and the content area…. How can i remove that spacing?

Thanks!

Post count: 131

Hi again!

How can I change the font weight of the Title of Tags or Category page?

How can i change the font wight of the tile and background color of the More Article Box??

Thanks

Post count: 131

Post count: 6600

Hi,

Use css: http://screencast.com/t/Oe3TkyiqkoPy

.td-page-title a, .td-page-title span {
font-weight: bold !important;
}

..for more art box: http://screencast.com/t/6UrLvscYV

.td-more-articles-box-title {
font-weight: bold !important;
}

.td-more-articles-box {
background-color: #0C7AD7 !important;
}

Thanks

Post count: 131

hi again!

when i use this code… it hides the 3 slider columns but it leaves a gap between the big slider and the content block


@media
(max-width: 767px){
.td-big-grid-post-1,.td-big-grid-post-2,.td-big-grid-post-3{
display: none !important;
}
}

what should I do? to fix it?

Post count: 7909

Hi,

Please use this css code: http://screencast.com/t/GlwTVEUz28mt

@media(max-width:479px){
.home .td_block_big_grid{
display: none;
}
.home .td-grid-wrap {
padding: 0px !important;
}
}

Thanks!

Post count: 131

How to change the color or article title in More Article Box?

View post on imgur.com

Post count: 7909

Hi,

You can target the title using this custom css – http://screencast.com/t/QmVLgbWFu8

.td-more-articles-box-title {
color: red !important;
}

Also background color I see that you have added a custom css for it – http://screencast.com/t/98TS5XJQ80

Thanks!

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