Hello, as shown in this figure do not know why advertising intrudes on the path of the article?
Hi,
Please provide a link to the issue, so I can inspect this.
Thanks!
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
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!
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 !
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!
-
This reply was modified 11 years by
Alin [tagDiv].
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!
Hi,
1. For contact page and advertising: http://screencast.com/t/K3fIs9okOJ – http://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/yybZNKJIL – http://screencast.com/t/VQxm1RHB
@media(min-width:768px){
.archive .header-content-rec .td-g-rec-id-header{
margin-bottom: 20px !important;
}
}
Thanks!
ok, check it out
-
This reply was modified 11 years by
bastian-pl.