how to remove space between header banner?

Status
Not open for further replies.

Desi_Boy

Active Member
356
2012
68
0
hi,
my website is bypasslimits.com

i inserted a header logo . but now its showing space between header logo and website please help to resolve issuse . i want to fit header logo with website . mean touch boundary of website.

[SLIDE]
H3JE6.png
[/SLIDE]
 
5 comments
edit your css and change:
Code:
#nav {
        text-align: right;        backgroud-color: white;
        list-style-type: none;
        font-size: 80%;
        border-top: 1px solid #ccc;
        margin: 20px 0 0 0;
        padding: 0;
    }
to

Code:
#nav {
        text-align: right;        backgroud-color: white;
        list-style-type: none;
        font-size: 80%;
        border-top: 1px solid #ccc;
        margin: 0 0 0 0;
        padding: 0;
    }
replace margin: 20px with 0
 
Last edited:
Open ur html, modify ur style like below. And just customize them abit like remove the white border...etc. That's all.

Code:
[U][B]Original[/B][/U]
#nav {
    border-top: 1px solid #CCCCCC;
    font-size: 80%;
    list-style-type: none;
    margin: 20px 0 0;
    padding: 0;
    text-align: right;

[U][B]Edited
[/B][/U]#nav {
    border-top: 1px solid #CCCCCC;
    font-size: 80%;
    list-style-type: none;
    margin: 0 0 0;
    padding: 0;
    text-align: right;
 
Status
Not open for further replies.
Back
Top