I recently changed my WordPress theme to a free theme called WordPress Christmas v1.1, designed by the benevolent and creative folks at InstantShift.com. You might be thinking … hmm … doesn’t look too Christmas-like. Yes with some basic Photoshop & CSS skills it was easy to change the design to make it work for me. With a little skill & help from me … you can too.
This little tutorial will help you change the images used for the RSS icon & the Mail icon and their position on your page. It’s up to you whether you work with the file live. It’s not brain surgery, but as always … back up any files you may alter before you start.
We will be working with these files:
style-one.css (or)
style-two.css
header.php
index.php
To move the RSS & The Mail Icons to the positions I have them in … open either the style-one.css or the style-two.css file depending on which you are using. What you need to change are around lines 79 & 80 in the CSS file.
Find:
img#rss-link{position:absolute;top:172px;left:-105px;}
img#contact-link{position:absolute;top:275px;left:-140px;}
Change to:
img#rss-link{position:absolute;top: 210px;left: 800px;}
img#contact-link{position:absolute;top: 280px;left: 825px;}
This will put the icons in the position I have them. But if you play with the top and left positions you can put them wherever you like.




To change the icons to other images as I did, find icons you like, there are plenty of free ones on the web. Open the header.php file go to this section:
<– RSS Link –>
<a href=”<?php bloginfo(‘rss2_url’); ?>”><img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/rss.png” border=”0″ id=”rss-link” class=”correct-png” alt=”RSS” /></a>
<a href=”mailto:contact@instantshift.com”><img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/contact.jpg” border=”0″ id=”contact-link” alt=”Contact” /></a>
Change:
mailto:contact@instantshift.com
to
mailto:youreMailAddress@YourDomain.com
And as in my case I changed both icons to images that I wanted and they were both .png files. Of course if you name your icon files to something other than rss.png or contact.jpg you will also need to change the corresponding file paths in the RSS Link section (above) … i.e.: /images/contact.jpg to /images/myfilename.jpg
Also remeber to keep backups of any changed or added files. If InstantShift updates this theme, you will have to make these changes all over again … or just re-upload your changed file after the update.
Hope this helps.









Thank you so much :)
Any idea how to change out the ads in this theme???
Can you help me ? I need to increase the width of Sidebar atleast by 50px without affecting anything else. How should i do that?
For those of you looking to "fix" the image CSS in this WordPress theme. This is what I posted on the InstantShift.com website: For those of you who are trying to change the way images only float left, and eliminate the border too … here’s the fix. The CSS line you are looking to change is in the “comments” section. It’s the same line in either of the style-one.css or style-two.css. Look for line 119: div.comment img{float:left;padding:4px;border:#DDD 1px solid;margin:5px 20px 15px 0;} Change to: div.comment img{margin:5px 20px 15px 0;} Of course you can also change the sizes of the margins to suite your needs too.
I have one more question - I wonder if you can help me? I want to put a twitter icon over on the right a little ways below the RSS icon - actually, it would be a little ways below where you have your contact icon. Is that possible? It doesn't need to be a link though it can be, I suppose. What do I put where in order to make that happen? Thanks again! Any help appreciated. ~ Annie
Awesome! Thank you! I really appreciate your help.
@ Annie To remove the icon completely, open the header.php file. Go to line 57. It should look something like this: Select and delete the entire line. Now both the icon & the mailto link are gone forever. That's it. :)
Thanks for the info! I have a question - perhaps you can help? I changed my RSS and contact icons and moved the RSS to the same area you have yours. However, I don't need the contact icon and I tried to remove it but it's still there - only it's not in the place it should have been - it's up in the header on the left. You should see it if you take a look at my blog link. Anyway, I don't want it at all. Do you know how to remove it completely? Any help is greatly appreciated. Thank you! ~ Annie
Thanks for the info! Mike