Jaiganesh Mani
Forum Replies Created
-
Forum: Themes and Templates
In reply to: how to add logo to my blog.I could see your changes in the logo issue solved.
Forum: Themes and Templates
In reply to: Columns look different in different computerscould you please let us know what OS/browser versions you are using?
Forum: Themes and Templates
In reply to: How to add my own image to my themethomastansg
There is an option in the admin section to add your own logo.
Login to Admin Section >Appearance >> Themes >> News Portal Theme Settings
browse and upload your Logo (Make sure your own Logo Size is(52px × 64px)
and save Changes.Jai
Forum: Themes and Templates
In reply to: Repeating background image issueI checked your CSS,
background-repeat SHOULD BE
background-repeat: repeat-x;
NOT
background-repeat: repeat;See your CSS and update
body (line 14)
{
background-color: transparent;
background-image: url(“images/bg2.png”);
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
font-size: 12px;
font-family: ‘Lucida Grande’,’Lucida Sans Unicode’,Tahoma,Arial,san-serif;
}Forum: Themes and Templates
In reply to: Repeating background image issueno need to add #ffffff
this will do…
background:url(“images/bg2.png”) repeat-x;
color:#000000;
font-family:’Lucida Grande’,’Lucida Sans Unicode’,Tahoma,Arial,san-serif;
font-size:12px;in this case the bg image show only one time and bg will be white after the bottom image.
Forum: Themes and Templates
In reply to: how to add logo to my blog.jatt
open /wp-content/themes/fashionpress/style.css file and change the logo.png to newlogo.png
.logo {
background:url(“images/logo.png“) no-repeat scroll 0 0 transparent;
float:left;
height:90px;
margin:0;
padding:0;
width:240px;
}Upload the newlogo.png file this folder /wp-includes/images
Forum: Themes and Templates
In reply to: Repeating background image issueviperousmango
Your Background image height is 937px but the content in this page is more than 937px.
Change the background image height.
Jai