Page 1 of 1

Big Red Band across the middle of my page

Posted: Tue Nov 03, 2015 2:55 pm
by damo66a
Hello there. Hopefully Im doing this right .

First things first, im using a Linux based system with the following:

MySQL 5.1.73
PHP 5.4.34-1
Lighttpd 1.4.35

Not sure on the Linux Version but for the most part it works fine.

Ive customermised one of the themes to suit our needs but keep getting a big red bar right across the middle of the page.

if you goto http://www.mvsestates.co.uk/mvs you will hopefully see what I mean.

Thanks in advance if you are able to shed any light on it for me.

Re: Big Red Band across the middle of my page

Posted: Tue Nov 03, 2015 10:30 pm
by damo66a
I've actually made some changes this evening so that it doesn't do this now but from what I can tell it's something to do with the fact the top image and bottom image separate when the article gets bigger and it expands. This then reveals the "red block" because that is the background color.

Is there any way around this? For example just coloring that particular article div white instead of having the top and bottom image (background).

Sorry if I've not made sense. Fairly new to this but thanks in advance anyways

Re: Big Red Band across the middle of my page

Posted: Wed Nov 04, 2015 3:31 pm
by HarmO
Your question is a not detailed enough IMHO.

What would you like to achieve?
The red color comes from the body background color in your CSS stylesheet.

If you want a certain div tho have a white background, modify your CSS class. The following example will give your header div a white background:

Code: Select all

#header {
background-color: #ffffff;
}