Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Layout/Design Advice for optional sidebar 1

Status
Not open for further replies.

link9

Programmer
Nov 28, 2000
3,387
US
Hello all,

I'm working up a design, and I'm just abysmal at CSS/HTML layout, so I'm looking for some advice here on the best way to achieve a desired feature of this design.

A content management engine that I have gives the user the option of including a sidebar on a page, which is just a small little "floating table" so-to-speak that lives on the left side of the design. Sometimes it's there, and sometimes it's not.

Graphically:
sidebarlayout.gif


Hopefully, it's pretty clear what I'm going after here. I want to not use a table cell over there because the text needs to wrap under it when it gets below the sidebar (as the picture shows).

It's exactly like how you align images and have text wrap around them, but this needs to be a container where I can put custom markup.

When the page doesn't contain a sidebar, I will set the overall style of the element to display:none to make it disappear.

Could someone help me out with some markup to make this basic design work? I assume that it would contain a div with some proper alignment styles applied, but I'm just not sure the best way to achieve this.

Much appreciated.

-Paul Prewett

penny.gif
penny.gif

The answer to getting answered -- faq855-2992
 
set up a special div style for the navigation and set the id of the navigation div to use it. Put it in the same div as the content and away you go.

Code:
div.navigation {float:left;)

That's all you need.

 
Cheers, Foamcow. Many thanks.

:)

-paul

penny.gif
penny.gif

The answer to getting answered -- faq855-2992
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top