Author Topic: Each Section with its own background.  (Read 3804 times)

0 Members and 1 Guest are viewing this topic.

Offline XIIIX

  • Newbie
  • *
  • Posts: 10
    • View Profile
Each Section with its own background.
« on: June 28, 2011, 07:56:26 PM »
Hello everyone!

I was wondering, I added a background image but each box(category, random image,etc) has the background and you cant see that well,
take a look

www.nonsenseinc.org/gallery/

Is it possible to customize each box so I each can have a different uhm background or make it so the background doesnt actually touch the boxes????

Cheers people!!!


EDIT-------------------------

I solved my own problem. You can change the background for each content You just have to go to the syle.css and find .box and .boxcontent

Code: [Select]
.contentbox {
border-left: 1px solid #e8e8e8;
border-right: 1px solid #e8e8e8;
padding: 8px;
font-size: 11px;
}

Whit this

Code: [Select]
.contentbox {
background-color: #ffff; /* new background color */
border-left: 1px solid #e8e8e8;
border-right: 1px solid #e8e8e8;
padding: 8px;
font-size: 11px;
}
Notice that you must change the #ffff, here's a list of the colors:

http://www.w3schools.com/tags/ref_color_tryit.asp?hex=ffffff
« Last Edit: June 29, 2011, 02:53:24 AM by XIIIX »