Hi (sorry for my english, i’m french),
I need to put a link for an advertasing background. I installed a plugin named Background Manager and i succeded in making left and right sides clickable with this code :
#outer-wrap {
max-width: 1170px;
margin: 0 auto;
}
Now i need to do the same with the part between the top menu and the logo. Here my website : http://www.lartvues.com
Can you help me ?
Thanks a lot,
Romain.
Hi,
Please try this css code in Theme Panel > Custom Css, I also added some css for you header ad: http://screencast.com/t/ABF0JcAG
.td-header-menu-wrap{
padding-bottom: 0px !important;
}
.td-header-style-1 .td-a-rec-id-header{
top: 0;
}
Result: http://screencast.com/t/dpc7b2GMh
Hope this helps!
Sorry for misunderstanding! Please try to remove padding bottom and add margin-bottom instead and see if works:
.td-header-menu-wrap{
margin-bottom: 136px;
}
Thanks!
Thank you but it’s not that.
Finally I removed the top menu. In “Custom css” I entered it for the shift:
.td-header-style-1 .td-a-rec-id-header{
top: 0;
}
#inner-wrap{
padding-top: 136px;
}
#outer-wrap {
max-width: 1170px;
margin: 0 auto;
}
It remains only to make clikable the background above outer-wrapper
Thanks a lot !!
Hi,
Sorry for delay! We have missed your topic somehow.
Please remove padding-top and add this css instead, so that space should be clickable: http://screencast.com/t/wVe73kwLYkj
#outer-wrap {
top: 136px;
}
Thanks!