WebsiteBaker Community Forum (upd)

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: tobyw7 on October 03, 2010, 10:43:13 PM

Title: Annoying design issue on my template, please help!
Post by: tobyw7 on October 03, 2010, 10:43:13 PM
I have an odd problem that I have spent a long time trying to solve. Please take a look at my site www.deathcaprecords.com (http://www.deathcaprecords.com)

There is a space between the body/content area and the footer. Yet when you click onto the Contact page there isn't.

I've been able to 'fix' this by setting the height in pixels for the content div to around 2000px from auto. When I set it to auto the space appaears, but when I set a manual height the gap disappears.

Any ideas would be greatly received!

Thank you in advance :)
Title: Re: Annoying design issue on my template, please help!
Post by: dbs on October 03, 2010, 11:15:02 PM
hmm... kill the <p> at Tobi White and the next <p> ...
Title: Re: Annoying design issue on my template, please help!
Post by: tobyw7 on October 04, 2010, 07:55:35 AM
Quote from: dbs on October 03, 2010, 11:15:02 PM
hmm... kill the <p> at Tobi White and the next <p> ...

I checked that, didn't seem to help though, sorry.
Title: Re: Annoying design issue on my template, please help!
Post by: dbs on October 04, 2010, 12:02:39 PM
i mean 2 lines with <p>

one line is now away, but toby has a <p> around.

sorry for my english

or make this:
<p style="margin:0;"><span style="font-weight: bold;">Toby White</span></p>
Title: Re: Annoying design issue on my template, please help!
Post by: tobyw7 on October 04, 2010, 03:26:01 PM
Quote from: dbs on October 04, 2010, 12:02:39 PM
i mean 2 lines with <p>

one line is now away, but toby has a <p> around.

sorry for my english

or make this:
<p style="margin:0;"><span style="font-weight: bold;">Toby White</span></p>

The site uses the following template: http://studiohem.com/dcr/template.html (http://studiohem.com/dcr/template.html) which works fine, it's only when you add the following

  <!-- column for main content -->
    <div id="content">
        <?php page_content(1); ?>
    </div>


That it doesn't work, I can double check it when I get back home later as well.
Title: Re: Annoying design issue on my template, please help!
Post by: dbs on October 04, 2010, 03:39:22 PM
ok, now it should help:
you have a float center in your css. change it:
#content_column_mod {
float:left;
width: auto;
background-color:#FFFFFF;
height: auto;
}
Title: Re: Annoying design issue on my template, please help!
Post by: tobyw7 on October 04, 2010, 07:53:17 PM
Quote from: dbs on October 04, 2010, 03:39:22 PM
ok, now it should help:
you have a float center in your css. change it:
#content_column_mod {
float:left;
width: auto;
background-color:#FFFFFF;
height: auto;
}


Thanks!
I did this and combined the content and content_column_mod tags - after doing that it's all fixed!

:D