vote up 0 vote down star

I am trying to get a text to wrap around a Div in my XHTML. My XHTML looks like so....

<div id="cont-content">


<p>content</p>

<p>more content</p>

<div id="content-sidebar">

 BLALALALALLAAL

 </div>

  </div>

And my CSS looks like...

#content-sidebar {
    display: block;
    float: right;
    width: 270px;
    height: 400px;
    border: 1px solid red;
}

Can you see any reason why the text will not wrap around this Div?

Full site is at http://www.leaklocations.com.au/company-profile/

For the record I'm using Firefox 3 on OS X.

flag

The content needs to flow around the sidebar? I'm assuming that's what you're after... – BenAlabaster Dec 19 '08 at 5:43
Is this your site? The reason I ask is because these days, small leaks don't sink big ships. They have bulkhead doors that automatically close in the event of a hull breach... just a thought – BenAlabaster Dec 19 '08 at 5:46
Haha, nope this is for a client. And I did not write that, merely a developer starting from a PSD! – alex Dec 19 '08 at 5:50
I don't know if all designers are like this, but they HATE it when I mention something about their design... – alex Dec 19 '08 at 5:53
lol - and yet that's what makes me do it ;) – BenAlabaster Dec 19 '08 at 5:55
show 1 more comment

2 Answers

vote up 1 vote down check

Yep you got it. The #content-sidebar should be before all the texts which are supposed to wrap it. Like this:

<div id="cont-content">

<div id="content-sidebar">

 BLALALALALLAAL

 </div>

<p>content</p>

<p>more content</p>


  </div>
link|flag
vote up 0 vote down

Ah the order of the XHTML is reason behind this! I guess SEO can take a back seat to implement this. Thanks to anyone who looked into this for me.

link|flag
You should mark this as answered. – Triptych Dec 23 '08 at 16:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.