I am trying to center my logo, i went into the header file in common under my template but I cant figure it out.![]()
and I am also playing with colors on the price, want to make it a wee bit bigger.
Any suggestions?
thanks.
I am trying to center my logo, i went into the header file in common under my template but I cant figure it out.![]()
and I am also playing with colors on the price, want to make it a wee bit bigger.
Any suggestions?
thanks.
You center the logo in your stylesheet. Look for
and change it to (you can copy and paste this)Code:#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg { float: left; }
Code:#logo { text-align: center; } .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg { float: left; }
i cant find this in my stylesheet. I am using a modified template
Look in layout.css. You have
Add the line in red.Code:#logo { padding: 40px 0 0 10px; }
Code:#logo { text-align: center; padding: 40px 0 0 10px; }