Hi
Long time reader, first time poster.
I have been tweaking my website and wanted ask if any one knew how to adjust a coloured line/bar/table
See http:// www.gemnetwork.com.au
At the top of the site, there is a grey line that runs behind “Home” “catalog” etc.
Can it be removed, reduced etc. I don’t want it there.
I have scanned style.css for the skin.
I have firbugged it, no luck.
Thanks for any and all help.
In your styles.css you have:
#header {
background:#EBEBEB url(images/body_bg.gif) repeat-x scroll left top;
}
Just change to:
#header {
background:#EBEBEB url(images/body_bg.gif) repeat scroll left top;
}
Basically now you have it so that your header repeats x and y.
Your header image was just to small for your header size.
Brandon
Thank you.
That’s very kind of you and it worked perfectly.