![]() |
|
|||
|
How do I Put "Get the Feed Via Email" below RSS feed at my blog here?: The Tom Kaszuba Photography Blog ?
The way it's done at the top right of the page at this link is exactly how I want it: Sugarrae - Never Mess With a Woman Who Can Pull Rank Thank you, Tom K. |
|
|||
|
Well, this is her css code...how she's styled the subscriptions.
ul#tabs li, ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0; background: #dcbc44 url('http://www.sugarrae.com/wp-content/themes/default/images/navbg-new.gif') repeat-x bottom left; border-bottom: 1px solid #ddd; } ul#tabs li.rss a { color: #c02e59; } ul#tabs li.rss a:hover { color: #716F7D; text-decoration: none; } |
|
|||
|
If you look at the site w/ Firebug, you can see that the RSS feed link is part of the navigation while the subscribe via email link is part of the header.
It is all in how ts implemented... it appears like a single element but it is in fact located in two seperate areas considering how thesis is laid out |
|
|||
|
Quote:
|
|
|||
|
Look for tutorials on kristarella's and sugarrae's site regarding custom headers and nav bars... both will lead you in the direction on how to customize them
I don't personally use the split navigation like that (with rss/email in two different areas) so I can't help with the specifics but you should be able to get the effect you are after using combines custom headers and nav bar |
|
||||
|
You will need to add the following CSS code to your custom.css file like this:
Code:
p.emailsub {
background:transparent url(images/icon-rss.gif) no-repeat scroll 100% 50%;
font-size:15px;
letter-spacing:2px;
padding-right:15px;
position:absolute;
right:0;
text-transform:uppercase;
top:8px;
}
Code:
function add_email_feed() { ?>
<p class="emailsub"><a title="Get Updates via Email" rel="nofollow" href="[[FEEDBURNER LINK GOES HERE]]">Get My Feed Via Email</a></p>
<?php
}
add_action('thesis_hook_after_header', 'add_email_feed');
__________________
Website/Blog Design and Development |
|
|||
|
Quote:
As you can see now the text is at the upper right of the page. |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Importing RSS feed help | afenwick | WordPress | 2 | 03-22-2009 01:36 AM |