Here's the issue.
In a content page, I have 2 "blocks" of based on a couple of CSS scripts I added, sort of based on the left49 and right49 you'd find in one of the default stylesheets, except I made them to a specific size (325px x 400px for now), so I can have a couple of my pages be layed out without tables. That pretty much works the way I want.
The problem I'm having is getting my horizontal nav into one of those "blocks". I've tried my existing one that I use in the main template as well as creating a new nav bar css and placing it in {literal} tags in the source of the page I'm working on. Both of them end up breaking apart instead of lining up nice and horizontal to the top of the box.
Basically, I'm looking to have one or two blocks within my home page to have a full horizontal nav bar with only 2-4 links (possibly with drop downs, but I doubt it)
here is my HTML:
and the bit of CSS for the block
Interview
Latest DVDs
Other Stuff
Box 3

like I said above, I am trying to use the Horizontal Nav CSS (based on one of the defaults) within the div class.div.right48 {
padding: 0em;
float: right;
width: 325px;
height: 400px;
background-color: #fff;
border: 1px solid #333;
text-align: center;
margin: 1em 0 0 0;
}
div.left48 {
padding: 0;
float: left;
width: 325px;
height: 400px;
background-color: #fff;
border: 1px solid #333;
margin: 1em 0 0 0;
}
I'm still learning CSS... a lot thanks to CMSMS which is a good thing


This is probably a simple solution, but I'm just not seeing it.
Thanks in advance for any help