WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1Background code Empty Background code Sat Jul 24, 2010 6:49 am

Fatal Dawn


Registered Member
Registered Member
Hi, I'm having trouble looking for the part of the code responsible for my homepage's background color.

Here's the link: http://www.purelyreview.com/home/
If you zoom out you can see that the background is cut in half. What I'm referring to is the blue top half part of the background.

Spoiler:

In case you haven't noticed, I'm a noob when it comes to css coding. So I'm just completely guessing which codes mean what.
At first I tried to see if I can spot a color code in the css template which color matches the background.
Any help would be appreciated. Smile

2Background code Empty Re: Background code Sat Jul 24, 2010 10:19 am

ankillien

ankillien
Administrator
Administrator
Hello,

You need to edit this part of code...

Code:
.all {
    padding:          0px 0px 0px 0px;
    margin: 0px 0px 30px 0px;
    color:            #333;
    background-image:  url(../images/all.png);
    background-repeat: repeat-x;
    background-color:  #000000;
}

Add this property in it background-position: bottom;

So, the code will look like this...

Code:
.all {
    padding:          0px 0px 0px 0px;
    margin: 0px 0px 30px 0px;
    color:            #333;
    background-image:  url(../images/all.png);
    background-repeat: repeat-x;
    background-color:  #000000;
    background-position: bottom;
}

3Background code Empty Re: Background code Sat Jul 24, 2010 8:00 pm

Fatal Dawn


Registered Member
Registered Member
Thanks a lot! Ank, it works well. Smile

4Background code Empty Re: Background code Sun Jul 25, 2010 12:04 pm

Sanket

Sanket
Administrator
Administrator
Solved | Locked

http://www.webartzforum.com

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum