Tagged: header
Hi Team!
All is in topic title! :)
How display in main header area the “Header Phone Number/Extra Info”?
Thanks for your answer
Marc
let me know, too.
me to please
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.phone-info {
position: relative;
top: 35px;
}
If that does not help, please post the link to your websites
Regards,
Yigit
It’s a hacked solution but well… it’s done
Complete code for my situation :
@media only screen and (min-width: 1085px) {
/* Add your Desktop Styles here */
.html_header_top.html_header_sticky #header {
margin-top: -30px;
}
#header_meta, #header_meta .container {
min-height:0px;
height: 0px;
}
.phone-info {
position: relative;
font-size: 32px;
top: 83px;
}
}
@media only screen and (max-width: 1085px) {
/* Add your Desktop Styles here */
.phone-info {
font-size:16px;
}
}
.html_header_top.html_header_topbar_active.html_header_sticky.html_large.html_bottom_nav_header #top #main {
padding-top: 163px;
}
Thanks Yigit ;)