Hi all

I'm using the theme Andreas01. The actual site is located at:

http://lowenfoundation.org

But for the life of me I cannot figure out how to change the bgcolor of the main white table to match my logo at the top. I have tried to do use the body bgcolor tag, screwed around with options in style.css and print.css, page.tpl, and pretty much every other document that came with the theme.

Also there are some blank lines above the image that I have tried, but can't get rid of. There are 2 lines for inserting site name and slogan, which I've unchecked but the blank space still shows up. I have tried to delete them in the page.tpl but then my logo doesn't show up either.

If anyone can help with these issues I would greatly appreciate it!!

-Biopress

Comments

WillieBHines’s picture

I looked very quickly so I might have this wrong.
If you're talking about the white background of the entire column -- that's a graphic
http://lowenfoundation.org/themes/SEOposition/bg_col1r.png

You would need to replace that to change the color of your site.

nevets’s picture

Since there are no tables and most of the page is white I am not sure which area you are talking about. Some possible css IDs are #globalwrap, #footer, #primary and #secondary. So getting the largest coverage you could use

#globalwrap, #primary, #secondary {
background-color: yellow;
}

As for the extra space somethings to look at, from the view pages there is the following css

#globalwrap {
  width: 725px;
  padding: 0;
  margin: auto;
}

#header {
  line-height: 0;
  width: 100%;
  padding: 0;
  border-top: 8px solid #2C2C2C;
  margin: 0px;
}

#header a	{
  border: none;
}

#logo {
  display: block;
  position: relative;
  height: 125px;
  background: url(toplogo.gif) no-repeat;
  padding: 0;
  border-width: 0;
  margin: 0;
}

#globalwrap margin-top should probably be zero (may not be with a value of auto for margin)
#header has an 8 pixel top border
#logo has a background image