Jump to content

Help logo position


Recommended Posts

Hi. i have add a simple text header picture and i have problem with the logo position.
after adding header.jpg the logo is placed in upper corner. 

global css looks like this and my site www.caseonline.se
 

/* ************************************************************************************************
HEADER
************************************************************************************************ */
#header {position:relative; background:url(../img/header.jpg) no-repeat right center; background-size: 760px 75px})
/*; background:url(../img/header.jpg) no-repeat; background-size: 760px 75px)*/
#header_logo {
position: relative;
left:0;
top: 30px;
z-index: 1;
}

#header_right {
position:relative;
float: right
}

Link to comment
Share on other sites

Hi. i have add a simple text header picture and i have problem with the logo position.

after adding header.jpg the logo is placed in upper corner. 

 

global css looks like this and my site www.caseonline.se

 

/* ************************************************************************************************

HEADER

************************************************************************************************ */

#header {position:relative; background:url(../img/header.jpg) no-repeat right center; background-size: 760px 75px})

/*; background:url(../img/header.jpg) no-repeat; background-size: 760px 75px)*/

#header_logo {

position: relative;

left:0;

top: 30px;

z-index: 1;

}

 

#header_right {

position:relative;

float: right

}

 

Hi,

 

To fix your problem, do the following changes,

#header {
     position:relative; 
     background:url("../img/header.jpg") no-repeat scroll 210px 5px transparent;
}
#header_logo {
     position: absolute;
     left:0;
     top: 30px;
     z-index: 1;
}
#header_right {
     position:relative;
     float: right;
}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...