binni_77
Forum Replies Created
-
Forum: Themes and Templates
In reply to: can’t remove sidebar for static pagesTry specifying width to content.page,post classes like width:980px;
Forum: Themes and Templates
In reply to: Changing Header Graphic / Removing some textRemove the code which is between
<!– feeds –> and<!– showcase –>
<div class=”widget widget_feeds”>…..</div>
Forum: Themes and Templates
In reply to: Changing Header Graphic / Removing some textFor footer remove background:url(img/wp-logo.png) no-repeat;
in a#powered {…..} in style.css
or remove id=”powered” from footer.phpForum: Themes and Templates
In reply to: Changing Header Graphic / Removing some textFor RSS in sidebar.php you can remove th whole content which is between
<div class=”content”>………….</div>Forum: Themes and Templates
In reply to: Changing Header Graphic / Removing some textHeader:
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>Forum: Themes and Templates
In reply to: Changing Header Graphic / Removing some textFooter :
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)Forum: Themes and Templates
In reply to: How do I get rid of the numbers next to my comments?oh, sorry for i cudn’t understand the question rightly and replied
Forum: Themes and Templates
In reply to: How do I get rid of the numbers next to my comments?In comments.php file replace this code
<?php comments_number(‘No Responses’, ‘One Response’, ‘% Responses’ );?>
which is in line 24
by
Responses or any word you want.Try thisForum: Themes and Templates
In reply to: how do I change prefilled search text?may be in header.php. If u don’t find there , in ur text editor, in menu ->search->find in files , type “Type text to search here…” and ur theme path, it wud give u the file
Forum: Themes and Templates
In reply to: Changing font colour & StyleIn ur style.css find this code and change color,style and size here
.BlockContent-body
{
position: relative;
overflow: hidden;
z-index: 0;
margin: 12px;
text-align: left;
color: #284012;
font-family: ‘Lucida Sans Unicode’;
font-size: 11px;
font-weight: normal;
font-style: normal;
text-decoration: none;
}Forum: Themes and Templates
In reply to: how do I change prefilled search text?After <div id=”searchbox”>……</div> javascript code is there.
In that u can find th eprefilled text.Try to change thereForum: Everything else WordPress
In reply to: Changing site effects only one computerGo to your admin panel and in Settings select wp SuperCache.
In that click “Delete Cache” button n try.
Hope this worksForum: Themes and Templates
In reply to: can’t delete php code – line1 errorTry Download the theme again and activate and then change
Forum: Themes and Templates
In reply to: can’t delete php code – line1 errorI hav installed NewsNow theme and removed the code which u removed.It is working fine.From NewsNow theme, i hav copied content of plugins folder to wp-content/plugins and newsnow folder to wp-content/themes and activated.It worked fine(i mean no errors)
Forum: Themes and Templates
In reply to: How do I change the color of my sidebar?If you give background:#00bbff , it effects only upto where the content of your sidebar ends.
If u want much portion of your sidebar’s background to change add the height u want like
#sidebar {
float:left;
width:250px;
padding-left:5px;height:800px;
}