CSS help needed,can anyone do this?

Status
Not open for further replies.
4 comments
Try this:

change this:

Code:
.nav_menu ul {
    float: left;
    border-left: 1px solid #EEA011;
    border-right: 1px solid #EEA011;
}

to:
Code:
.nav_menu ul {
   float:none;
    margin: auto;
    max-width: 720px;
    border-left: 1px solid #EEA011;
    border-right: 1px solid #EEA011;
}
hope it helps :) let us know if you have any other issues :)

Regards
 
Try this:

changing this:
Code:
.logo {
    display: block;
    width: 299px;
    height: 110px;
    border: 0px solid rgb(0, 0, 0);
    background: url("./images/logo.png") no-repeat scroll 0% 0% transparent;
 
}

to this

Code:
.logo {
    display: block;
    width: 299px;
    height: 110px;
    border: 0px solid rgb(0, 0, 0);
    background: url("./images/logo.png") no-repeat scroll 0% 0% transparent;
    margin: auto;
}

hope you this is what you want :)
 
Status
Not open for further replies.
Back
Top