[EMAIL PROTECTED] wrote:
> I seem to be stuck and need help. I have worked up a preliminary test for a 
> site at http://learninks.org/abouttest.html. I have two issues that are 
> stumping me.
>
> 1. In IE, the header image, nav bar and text block remain in the same place 
> on each page. However, in Mozilla three of the pages show the header image 
> jumping to the right - pages "home," "deep heart healing," and "a child's 
> request." I cannot see any reason that makes these pages different than the 
> others causing the jump.
>   
My off-the-wall guess is that it is short page shift. The solution in 
this article /may/ help.<http://www.splintered.co.uk/experiments/49/>
> 2. In IE, the nav bar is slightly higher than the text block, but in 
> Mozilla the nav bar is lower than the text block! I would like the text and 
> nav bar to be at the same level.
>   
Deleting the padding-top on this selector,
from:
#navbar {  
    padding: 7px 0px 0px 7px;  
}
to:
#navbar {  
    padding: 0 0 0 7px;  
}
/Seems/ to do tjhe trick in IE6, FF1.5.2, &Opera9beta
> What am I doing wrong/missing?
>   
Maybe that you've got some heavy duty reading material that might be 
easier to read set:
/*BODY*/body {  
    font/*-family/*: /*Verdana, Arial, Helvetica,*/ 100%/1.2 sans-serif;
   /* font-size: 80%; */ 
}
p {  
   /* text-align: justify; */
text-align: left; 
}
>
> Liv
>   
Best,
~davidLaakso

-- 
http://www.dlaakso.com/gustave/

______________________________________________________________________
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