Adding Icons to Beaver Builder Theme Menus – Part Two.
28th June 2016
In this video I show an alternative to Part One for adding Font Awesome social Icons to Beaver Builder menus. I also show how to do the same using images instead of font icons.
NOTES FROM THE VIDEO
Adding icons via CSS
Here we are using the :before Pseudo-element (which I mistakenly called a Pseudo-class once here!) to add the icons as new content via CSS.
/*Hides the link text and adds general styles */
.navbar-nav.menu .navicon.menu-item A
{
color: transparent;
font-size: 0;
width: 53px;
}
.navbar-nav.menu .navicon.menu-item A:before
{
font-family: FontAwesome;
/*+border-radius: 100%;*/
-moz-border-radius: 100%;
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
border-radius: 100%;
padding: 5px;
color: #FFFFFF;
background-color: #58AFCE;
font-size: 23px;
display: block;
width: 42px;
position: absolute;
text-align: center;
font-weight: normal;
/*This needs adjusting to positive top 6px in the center logo layouts.*/
top: 7px;
}
This adds the individual social icons from Font Awesome
Nice to see you here too. The editor is called Stylizer ( http://www.skybound.ca/) I have been using it since 2008. I’ve tried all new ones like CSS Hero, Yellow Pencil and Microthemer, but just haven’t got on with them. I find them restrictive and I feel you end up learning an interface rather than CSS.
That could be me stuck in my ways, but I found able to switch to and from manual coding with it.
There is a 30 day trial (I think) where you can get it without signing up, They don’t seem to have an affiliate scheme so don’t get promoted much.
Hi David,
great stuff, again…
which css editor are you using in the video..?
cheers,
Iain
Hi Iain,
Nice to see you here too. The editor is called Stylizer ( http://www.skybound.ca/) I have been using it since 2008. I’ve tried all new ones like CSS Hero, Yellow Pencil and Microthemer, but just haven’t got on with them. I find them restrictive and I feel you end up learning an interface rather than CSS.
That could be me stuck in my ways, but I found able to switch to and from manual coding with it.
There is a 30 day trial (I think) where you can get it without signing up, They don’t seem to have an affiliate scheme so don’t get promoted much.