Forum Replies Created
-
AuthorPosts
-
joelmoney
ParticipantThanks Brad.
However, this won't show the content in the editor..looks like just regular html within the function / template, right?
joelmoney
ParticipantDaniel-
What is your goal for this? Meaning..what should it look like when complete?
Is the Facebook logo working as you want it?
If so..add your background image positioning call the same way as you are for the Facebook one.
Currently you are calling twitter via the anchor tag ( <a> ) and facebook on the <li>
.menu-twitter a {
text-indent: -9999px;
background-image:url(http://uberblogging.com/wp-content/uploads/2013/01/social_twitter_box_blue_128-e1359321440170.png) !important;
background-repeat: no-repeat !important;
margin-left: 70px !important;
width: 30px;}
-VS-
.menu li.menu-facebook {
text-indent: -9999px;
background-image:url(http://uberblogging.com/wp-content/uploads/2013/01/social_facebook_box_blue_128-e1359322484918.png) !important;
background-repeat: no-repeat !important;
margin-left: -15px !important;
width: 30px;
}IF so...you can try just removing the above twitter style and adding this:
.menu li.menu-twitter {
text-indent: -9999px;
background-image:url(http://uberblogging.com/wp-content/uploads/2013/01/social_twitter_box_blue_128-e1359321440170.png) !important;
background-repeat: no-repeat !important;
margin-left: -15px !important;
width: 30px;
}
and you should be pretty close to what you are looking for. -
AuthorPosts