I want to make the Social media icons in the header larger, and I also want to have them appear with the coloured background always showing (like how it is when you hover on them).
Any suggestions
try this:
#top .social_bookmarks {
height: 50px;
}
#top .social_bookmarks li {
background-color: #ccc !important;
width: 50px;
}
#top .social_bookmarks li a {
font-size: 30px;
line-height: 50px;
min-height: 50px;
text-align: center;
width: 50px;
}
here i choosed font-size 30px – the 50px concerns to it. If you want bigger “images” you have to change these 50px as well.
and if you want a different color for each you have to set up f.e.
#top .social_bookmarks li.social_icon_1 {background-color: #aaa !important}
or
#top .social_bookmarks li.social_bookmarks_facebook {background-color: #aaa !important}
etc.
for social_bookmarks_twitter, social_bookmarks_skype, social_bookmarks_linkedin, and so on