sprite images
-
I got it! 🙂
Ok, so yeah… your RSS code… where’s the code which specifically calls http://url/feeds? I think I will have to mimic that code in order for the rest of my buttons to work – facebook, twitter, and email subscriptions.
Admin
This is the part of the code that generates the feeds URL:
<?php bloginfo('rss2_url'); ?>
It’s a wordpress function. You can read more about it (including what other values you can get using that function) at the WordPress Codex Page.
Admin
Your Twitter account is not related to WordPress in any way. Why not just hardcode the link? For Twitter, it should be something like
http://www.twitter.com/twitterusername
Admin
You should do it in the template file that corresponds to where you want to put the link. If you want to put it beside the RSS icon on the top bar, then it should be in the header.php file after the RSS I quoted several posts before.
would you be able to tell me what the placement should be for the 2nd icon (then I can take it from there… right now I have
#mail a{
margin:6px 0 0 68px;
float:left;
width:45px;
height:45px;
background:url(images/icons/mailglass.png) no-repeat;
#mail span{
display:none;
}
}
#mail span{
display:none;
}
located 45px over to the right from the RSS (68). Is my logic right here? 🙂
Admin
That CSS will place the 2nd icon 68px to the right of the RSS, with it’s size being 45px wide and 45px high.
I’m sorry, but I have to say that these are pretty simple adjustments to make if you know enough HTML and CSS, which isn’t much.
- You must be logged in to reply to this topic.