How to remove White Line in header 1.5

GK User
Mon Jul 25, 2011 2:20 pm
Hi,

I want to remove the white line in the header but cannot figure out how... excuse me if its obvious but im a bit of noob with the whole thing!
Untitled-1.jpg
User avatar
Fresh Boarder

Konrad M
Mon Jul 25, 2011 3:28 pm
Hi
Can you give us url to your site?
User avatar

GK User
Mon Jul 25, 2011 3:31 pm
Its here:

http://d1160788.cp.blacknight.com/joomla/index.php

Im also looking to find out a few other things if you could help (sorry total noob):

How I can make the logo bigger without the menu going mad?
What do I need to change to make the text white or any other colour in the footer (beside the 90th Logo)

Thanks for the help!
User avatar
Fresh Boarder

Konrad M
Mon Jul 25, 2011 3:48 pm
Hi
This top black nad white stripe is a background for #bg-wrap div. So if you want to remove only white sripe you need to edit images/stripes.png in temmplate folder.
If you want remove it all just try add to override.css
Code: Select all
#bg-wrap {
    background:none;
}

and remember to enable override.css option in template settings.

If you want to have logo bigger try add to override.css
Code: Select all
h1.logo a {
    height: 69px; // here set as same height as your logo image
    width: 310px; // here set as same width as your logo image
}


For third issue try
- for headers try edit style1.css and find
Code: Select all
.gk-bottom .moduletable > h3, .gk-bottom .moduletable_menu > h3, .gk-bottom .moduletable_text > h3 {
    color: #53534E; // here set your own color
}


- for links in columns try edit style1.css and find
Code: Select all
a {
    color: #858585; //here set your own color
}


- for footer text color try edit style1.css and find
Code: Select all
#gk-footer {
    color: #888888; //here set your own color
}
User avatar

GK User
Tue Jul 26, 2011 7:28 am
Thanks a million for the reply! Very much appreciated! Still having 2 small issues both related.

The black and white line has gone everywhere excluding along to the top of the logo area? How can I get rid of this also?

I did what you suggested with the logo but it overlaps the menu, it also seems to have capped out the width?:


Untitled-3.jpg



Thanks again for the help!
Fionn
User avatar
Fresh Boarder

Konrad M
Wed Jul 27, 2011 8:45 am
I checked site nad look's that you fix logo dimensions issue. This top line is border if you want remove it try add to override.css
Code: Select all
h1.logo {
border:none !important;
}
User avatar

GK User
Wed Jul 27, 2011 9:12 am
I didnt fix it I just reverted it back to the smaller size for the moment.

Basically we want to make the Logo more prominent and less of a "tag on" to the site.
User avatar
Fresh Boarder


cron