Hi mlpokn,
I took a look at your site using the Firebug extension in Firefox. To hide the header image, edit the #RandomShow img declaration in your style sheet and add display: none:
#RandomShow img
{
background: url("resources/loading.gif") no-repeat scroll center center transparent;
height: 160px;
width: 920px;
display: none;
}
When you say give more space between pages, can you please tell us what part of your site you are referring to? Do you mean the space between items in the navigation bar or some other part of the site? Using Firebug is a great way to see what CSS is affecting the different elements on a page.
Hope this helps!
Thread Starter
mlpokn
(@mlpokn)
Hello ChristiNi.
It took me a while to find that STYLE file, but I got it working. Thanks.
So. I want to give more space between the items in the nav. bar. Between the 2nd and the 3rd mostly.
Hi mlpokn,
You could adjust the width of each of the items in your navigation menu so they are distributed uniformly by adding a width to the header .menu li declaration in your style sheet:
header .menu li {
float: left;
width: 120px;
You can change that width and test it to see what works best for you.
Hope this helps!
Glad to hear that mlpokn! If you have time, could you mark this topic as resolved?
Thanks!