[css-d] css positioning problems

2008-01-31 Thread Ron Zisman
http://www.ricochet.org/ricochet2/company_principal2.html 2 more positioning problems: in the blue bar at the top is contact copy #top {width:100%} #top p { positioned from the left } which means if the font scales differently in different browsers, it's not going to expand as i'd like.

Re: [css-d] css positioning problems

2008-01-31 Thread David Laakso
Ron Zisman wrote: http://www.ricochet.org/ricochet2/company_principal2.html 2 more positioning problems: in the blue bar at the top is contact copy #top {width:100%} #top p { positioned from the left } which means if the font scales differently in different browsers, it's not going

Re: [css-d] css positioning problems

2008-01-31 Thread David Laakso
David Laakso wrote: Ron Zisman wrote: http://www.ricochet.org/ricochet2/company_principal2.html the 'Communications Design' #header h2. actually all h2's. ah, scaling doesn't work so well. ron I neglected to include this in my last reply. You'll need it to position #header h2.

Re: [css-d] CSS Positioning problems

2006-12-08 Thread bill scheider
I m having some major problems for example the date text should be 10 pixels down but it stays in the same place so it seems if it ignoring the margin-top: 10px; part? snip/snip } .date { margin-top: 10px; margin: 0px; padding: 0px; font-weight:bold; } Hi Ian, In your date class, the

Re: [css-d] CSS Positioning problems

2006-12-08 Thread Robert Mcleod
[EMAIL PROTECTED] wrote: .date { margin-top: 10px; margin: 0px; padding: 0px; font-weight:bold; } G'day, I think the biggest problem here is that you redefine margin to 0px after you declare margin-top as 10px. Having margin: 0px *after* your margin-top: 10px line will set margin-top

Re: [css-d] CSS Positioning problems

2006-12-08 Thread George Ornbo
.date { margin-top: 10px; margin: 0px; padding: 0px; font-weight:bold; } Hi there, In your .date rule you apply a margin-top and then in the next line you remove it with margin:0px (which applies to all sides). If you want just a margin top use: margin: 10px 0px 0px 0px; Cheers George Shape

[css-d] CSS Positioning problems

2006-12-07 Thread Ianvaughan1979
Hi I am trying to create a design from a photoshop mockup in CSS but at present I m having some major problems for example the date text should be 10 pixels down but it stays in the same place so it seems if it ignoring the margin-top: 10px; part? Any ideas? #details { float: right;

Re: [css-d] CSS Positioning problems

2006-12-07 Thread Tim White
- Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: css-d@lists.css-discuss.org Sent: Thursday, December 7, 2006 5:21:29 PM Subject: [css-d] CSS Positioning problems Hi I am trying to create a design from a photoshop mockup in CSS but at present I m having some major problems