sagive 24 Junior Poster in Training

What does that mean a border around everything????
Please be specific.. which DIV??

DO you mean this > tradeContainer ??
it has no CSS definition..

sagive 24 Junior Poster in Training

What you have is a small problem with the way you ordered stuff..

This div's:
<div id="leftHandColumn">
<div id="secondaryHeader">
<div id="galleryContent">

Should all sit inside one div "container"

Then it would would great!!

What is actually happening is you got (structure simulator :) )

<div> -- NOTHING --
<div> -- NOTHING --
<div> <div to the right>

insted of (putting this 3 into one container):

<div inside me are 3 divs> <div to the right>


i hope this solves your problem..

sagive 24 Junior Poster in Training

we need a link.. cant really know sizes here.. (sababa? :) )

sagive 24 Junior Poster in Training

Men those numbers are annoying :)
first thing.. if you have another div with the same name i would change them and make simepler path of css...

Try this:

.bulb_body {
width : 670px;
background-image : url(../img/body_bg.jpg) repeat-y;
margin-right : auto;
margin-left : auto;
}

.bulb_body_left {
width: 400px;
float: left;
}

.bulb_body_right {
width: 270px;
float: right;
}
DarkBerzerk commented: V.Good +1
sagive 24 Junior Poster in Training

why not use the <p> tag within the text? it loads to an php file right?

AndreRet commented: Thanks, did that, now solved. +7
sagive 24 Junior Poster in Training

Looks great to me...

In order to lock a height you need to define it via CSS
Maybe even use an important tag so it wont get run
Over by other attributes

Like so
.somediveclass table td

{height:100px !important}

Hope this helps..

sagive 24 Junior Poster in Training

you need to determine height for that div
of the menu dont leave it without the definition

you can either do:
height: whateverPX
or
line-height: whateverPX

that should fix it..