Hey David! Thanks a lot!! It´s working now!!! :))) Thanks!! On Feb 19, 2008 4:40 PM, David Laakso <[EMAIL PROTECTED]> wrote:
> Laert Jansen wrote: > > > > The margin on the top is working much better now. About the line > > height I tried a raw number but it´s not working. Firefox is ok but IE > > has a lot of white space between the lines...strange....... > > > > The description is something like "Client: Jacob Ferreira > > Role. Website Design Agency. Freelance Work" > > I tried a horizontal list with <ul><li> but its not working well in > > IE. What´s the best way to do something like this? > > > > Thanks a lot again, > > > > Laert > > > > > > > > > http://www.laertjansen.com/site2/ > > > > > > With regard to the body declaration correction you've made, change this: > > > body{ > background-color:#000; > font-family: Georgia, Times New Roman, Times, Serif; > margin-left: 0px; > margin-right: 0px; > margin-top: 0px; > margin-bottom: 0px; > background:url(../images/repeat.gif) repeat; > > } > > to: > > body{ > background-color:#000; > font-family: Georgia, Times New Roman, Times, Serif; > margin: 0; > padding:0; > background:url(../images/repeat.gif) repeat; > > } > > For the paragraph leading in IE, change this: > > #biography{ > font-size: 10px; > line-height:0.8; > margin-top: 8px; > color: #999; > } > > to read: > > #biography p { > font-size: 10px; > line-height:0.8; > margin: 8px 0 0 0; > color: #999; > } > > > For the description, you'll need to default the ul margin and padding. > > Change this declation: > #menu ul { > color:#999; > font-size: 10px; > padding-left: 3px; > list-style-type: none; > margin-bottom: 4px; > } > > To read something like this: > > #menu ul { > color:#999; > font-size: 10px; > padding: 0 0 0 3px; > list-style-type: none; > margin: 0 0 4px 0; > } > > BTW, the above menu id needs to change to a class in both the markup and > the CSS. > > An id is unique and can only be used once on a page. You've used it > numerous times; consequently, correcting it to a class will do the > trick, and simultaneousley fix some of the 30 markup validaton errors. > > HTH, > > ~dL > > PS /Landing/ on a page with mousetype an 116dpi laptop ain't no picnic > for those of us without your Superman vision. Then having it frozen in > IE, only adds insult to injury. > > > > > > > > > > > You will still want to correct the 30 markup validation errors on your > file. > > -- > http://chelseacreekstudio.com/ > > > > ******************************************************************* > List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm > Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm > Help: [EMAIL PROTECTED] > ******************************************************************* > > ******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [EMAIL PROTECTED] *******************************************************************