Ted wrote:
> http://nexel.superiorshelving.com/test-files/fixed/fixed.shtml
> http://nexel.superiorshelving.com/test-files/fixed/fixed.css
> But there are a few things I need to fix.
>
> 1] 
> align the text?
> vertical-align:middle doesn't seem to work.
>   
If  you mean more or less vertically center the text in the nav, try:
div#navList { 
 line-height: 1.6; <<<add
 /*height: 1.6em;*/ <<<delete  
 /*vertical-align: middle;*/<<<delete
padding: 4px 0 6px 0;  <<<amend to  
}
.navbar { padding: 4px 0 0 0;  }<<<add       
> 2] the searchBox div needs to be broken up some more, but I'm not  
> sure how to do a div within a div within a div
>   
You could see if something like this works for you:
css
div#searchBox p{margin:0;padding:0;}
#sb1 {background-color: red;float:left; width: 40%;}
#sb2 {background-color: blue;float: left; width: 40%;}
#sb3 {background-color: green;float: left; width: 19%;}
html
<div id="searchBox">
<div id="sb1">
<p>1</p>     
</div>
<div id="sb2">
<p>2</p>     
</div>
<div id="sb3">
<p>3</p>     
</div>
</div>
> 3] When you scroll down the page, you'll see some of the text show  
> through between all the divs. How can I  
> stop that from showing, without giving the entire header a white  
> background?
>   
aside: the page will need some correction for IE. Why have you commented 
out the xml declaration?
> Ted
Best,
~dL

-- 
http://chelseacreekstudio.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to