Changing Header Graphic / Removing some text
-
Hi Folks,
I’m trying to do a few simple (I hope) edits to my site but can’t quite figure them out. I don’t know much about CSS or PHP but have slight HTMl experience. I’ve looked at some tutorials but still can’t seem to do what I want, I hope someone here can help me. I know these questions get asked 1,000 times here but I’m stumped.
My site is http://stogielife.com and I am using the iNove theme. I want to replace the text header with a graphic I made, you can take a look at the graphic here.
Along those same lines, I’d like to remove the footer that shows the WordPress logo and theme info.
Finally, I’d like to remove the RSS Feed link from the top right sidebar as I’ve added a subscribe button so people can subscribe via email as well.
If I need to provide any additional information please let me know. Thanks in advance for any help you can offer.
-
Footer :
In footer.php remove this code:
WordPress
and also remove the content which is in between
<div id=”themeinfo”> and </div>RSS :
In sidebar.php search for <div id=”subscribe”>
Remove the next line which is between <a rel=”external nofollow”……
and (including anchor tags)Header:
In style.css find this code .Replace it with
#header {
background:url(img/header.jpg) 0 0 no-repeat;
height:90px;
border-bottom:1px solid #A6A6A6;
overflow:hidden;
}
by
#header {
background:url(img/Stogie-Life-Header.jpg) 0 0 no-repeat;
height:200px;
border-bottom:1px solid #A6A6A6;
overflow:hidden;
}And in templates/header.php remove this code
<div id=”caption”> <h1 id=”title”>/”><?php bloginfo(‘name’); ?></h1>
<div id=”tagline”><?php bloginfo(‘description’); ?></div>
</div>For RSS in sidebar.php you can remove th whole content which is between
<div class=”content”>………….</div>For footer remove background:url(img/wp-logo.png) no-repeat;
in a#powered {…..} in style.css
or remove id=”powered” from footer.phpThanks for the info. I’ll get a chance to work on my site tonight and hopefully can get these tweaks accomplished.
Thanks again for the info, I didn’t get a chance to work on it much tonight but I did removed the RSS Feed text.
As a follow-up to that question, How do I remove the divider graphic that is still at the top of the page? I would like the subscribe graphic to be at the top, without the divider bar above it.
I really appreciate the help here, I’m learning a lot.
Remove the code which is between
<!– feeds –> and<!– showcase –>
<div class=”widget widget_feeds”>…..</div>
Thanks again! That did it. 😉
Still working on the others, but one step closer.
OK, another follow-up question…
In this statement what is the code that I need to remove?
Header:
In style.css find this code .Replace it with
#header {
background:url(img/header.jpg) 0 0 no-repeat;
height:90px;
border-bottom:1px solid #A6A6A6;
overflow:hidden;
}
by
#header {
background:url(img/Stogie-Life-Header.jpg) 0 0 no-repeat;
height:200px;
border-bottom:1px solid #A6A6A6;
overflow:hidden;
}Hey Binni, thanks again for the help!
I read through your instructions again and see what I missed – think I’ve got it now.
2 out of 3 down, now to get that footer fixed…
And now I”m 3 for 3!
Thanks, I really appreciate the help.
The topic ‘Changing Header Graphic / Removing some text’ is closed to new replies.