I added / edited the “small bar above main menu” via advanced styling, and added phone number top left, social icons top right. I also edited the phone number text with this CSS:
.phone-info {
font-size: 18px;
padding-top: 12px;
padding-bottom: 12px;
}
Now, I would like to modify the social icons by:
Centering them height-wise with the phone info
removing the borders in between them
adding a circular background #c24e2d
Thanks!
Ryan
Hey Ryan,
Your screenshot link is not working but I believe that the css below will achieve what you wanted, I just wasn’t sure about the circular background #c24e2d, did you always want that or only on mouse-over? This solution makes it always.
#top .av_extra_header_active .social_bookmarks li {
border-right-style: none;
border-right-width: 0;
}
#top .av_extra_header_active .social_bookmarks {
padding-top: 4px;
}
#top .av_extra_header_active .social_bookmarks li a {
border-radius: 25px;
background: #c24e2d!important;
}
the expected results:
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Awesome, it worked. How do I add 10 px spacing between each orange circle?
Thanks,
Ryan
Hi,
Add 10px margin-right to the #top .av_extra_header_active .social_bookmarks li
rule, like this:
#top .av_extra_header_active .social_bookmarks li {
border-right-style: none;
border-right-width: 0;
margin-right: 10px;
}
#top .av_extra_header_active .social_bookmarks {
padding-top: 4px;
}
#top .av_extra_header_active .social_bookmarks li a {
border-radius: 25px;
background: #c24e2d!important;
}
Best regards,
Mike
Perfect, thanks. You can close this one!
Hi,
We are glad that Mike could help! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)
Enjoy the rest of your day!
Best regards,
Yigit