Entry path overlaps ads

Posted in: Newspaper
Post count: 134

Hello, as shown in this figure do not know why advertising intrudes on the path of the article?

link

Post count: 7909

Hi,

Please provide a link to the issue, so I can inspect this.

Thanks!

Post count: 134

It looks like this and on our other side, as I take the view Style 3 – (full width logo ) + menu, then the path overlaps on advertising when I push it in css does it on the home page where everything is ok .
Link

Post count: 134
Post count: 7909

Hi,

Please use this custom css for post page in Theme Panel > Custom Css: http://screencast.com/t/kL9gKsaZPW

.single .header-content-rec .td-a-rec-id-header{
margin-bottom:20px;
}

Also for category’s page: http://screencast.com/t/C63i9hYkj

.archive .header-content-rec .td-a-rec-id-header{
margin-bottom: 20px;
}

Thanks!

Post count: 134

Works. But how do I take and decrease the browser window to view it on your smartphone and remains the distance it should not be if you do not see the path entry. Well I’m saying?

Thank you for your great support !

Link

Post count: 7909

Hi,

Please reduce margin bottom value on mobile view: http://screencast.com/t/GPdwCBisWwY

@media(max-width:767px){
.archive .header-content-rec .td-a-rec-id-header{
margin-bottom: 0px;
}
}

Thank you!

Post count: 134

But here does not work

LINK

Post count: 7909

Hi,

Please add an } to the above code this is correct(I forgot to close it, sorry for this):

@media(max-width:767px){
.archive .header-content-rec .td-a-rec-id-header{
margin-bottom: 0px;
}
}

Also please try this custom css for your issue, this ad has another class: http://screencast.com/t/naY6IYUoh

.archive .header-content-rec .td-g-rec-id-header{
margin-bottom: 20px;
}
@media(max-width:767px){
.archive .header-content-rec .td-g-rec-id-header{
margin-bottom: 0px;
}
}

Hope this helps!

Post count: 134

On this page does not work yet when push for instance I click on the contact tab and advertising
link link

and on this page does not work at css try to come to everywhere was the same
link

Post count: 7909

Hi,

1. For contact page and advertising: http://screencast.com/t/K3fIs9okOJhttp://screencast.com/t/IeW96409rfH

@media(min-width:768px){
.page .header-content-rec .td-a-rec-id-header{
margin-bottom: 20px;
}
}
.home .header-content-rec .td-a-rec-id-header{
margin-bottom: 0px!important;
}

2. For category page that use that ad with another class like above try to use !important: http://screencast.com/t/yybZNKJILhttp://screencast.com/t/VQxm1RHB

@media(min-width:768px){
.archive .header-content-rec .td-g-rec-id-header{
margin-bottom: 20px !important;
}
}

Thanks!

Post count: 134

ok, check it out

Post count: 134

Ok , it works , thank you very much

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