Any way to make the social icons on the top of this page…..http://mpallstars.org/….look like the social media icons in the footer of this page….http://mpssi.com/page_id3567/ (ignore the green color…would want them to be white)
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
#top #header_main .social_bookmarks li a {
background-color: #fff;
border-radius: 4px;
color: #000;
}
#top #header_main .social_bookmarks li:hover a {
background-color: #83c900;
border-radius: 100px;
color: #ffffff;
}
Play around with the values however you want.
The first half is the normal icon.
The second one is for the mouse over effect.
cheers
thank you…that worked great…now the only thing I need to do is move the social icons up to create more space between them and the search bar. Any quick css to accomplish that?
#header_main .social_bookmarks {
top: 40%;
}
And i see you kept my previous code as it is.
Don’t know if you want the icons change to round icons again on mouse over.
That was just for demonstration :)
Thank you…appreciate the help
Also the search icon looks a bit strange to me.
The search button is 1 pixel higher then the input field.
Just a suggestion when you read this:
#top #searchsubmit, .ajax_load {
border-left: solid;
height: 38px;
right: 1px;
top: 1px;
}
Fixes the different height and adds a border between them.