WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: rikkibr on January 26, 2009, 05:13:13 PM

Title: Problem with header image
Post by: rikkibr on January 26, 2009, 05:13:13 PM
Hi

Can someone advice me what to change on my site so that when my site is narrower, the header image is cut off at the right side instead of the left?

Dont know what CSS thing I should change.

www.heimathjalfun.is/index.php (http://www.heimathjalfun.is/index.php)

If you make the window narrower then you see that the logo´s left side is cut off.

Thanks
Title: Re: Problem with header image
Post by: marathoner on January 26, 2009, 06:14:20 PM
Take a look at your CSS ID 'headerpic' on line 280 and you will see that it is positioned 'right top'.

Code: [Select]
#headerpic
{
position: relative;
height: 222px;
background-color: #ffffff;
background-image: url(images/hdrpic.jpg);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: right top;
margin-bottom: 2px;
}
Title: Re: Problem with header image
Post by: rikkibr on January 26, 2009, 10:54:29 PM
Great! All fixed now.

Thanks for your reply marathoner  :-)