Ad Box problems

Posted in: Newspaper
Post count: 7

Website: csglobe.com
Problem: Ad Box or Block 10
Located: Homepage, above “NEWS” section
Details: The Ad box, appears over Block 10 element [VIEWERS’ PICKS; LATEST IN TECHNOLOGY; TRENDING VIDEO; MOST READ ON CSG]
Request: How to resolve this issue [we want to have 15/20px distance above and below the ad ]
Request 2: Is there any possibility to show the Block 10 elements [VIEWERS’ PICKS; LATEST IN TECHNOLOGY; TRENDING VIDEO; MOST READ ON CSG] only on desktops and hidden on tablets/mobiles?

Post count: 7909

Hi,

1. Please use this custom css in Theme Panel > Custom Css: http://screencast.com/t/6TEPHxcz917y

.home .td-g-rec-id-custom_ad_3{
margin-top: 20px;
margin-bottom: 20px;
}

Result: http://screencast.com/t/bvrAaHaii

2. Yes it is possible, you have to add a class to that row that you want to hide on mobile view: http://screencast.com/t/TrpfoAGF
And use css code to hide that row on mobile view:

@media (max-width: 767px){
.your class{
display: none;
}
}

Desktop: http://screencast.com/t/avEVO2TFKZ
Mobile: http://screencast.com/t/48NdbHbCgzg

Thanks!

Post count: 7

Thanks!

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