Re: [css-d] series of site issues

2009-07-24 Thread David Laakso
Lisa Wilcox wrote:
 But I do have that in my code.
   

   


As mentioned I only looked at one wide page and the gif in question was 
not in the inline style markup. Point to the specific page you wrote 
about with a clickable link to it.

Please bottom post (write below to whom you reply). Thanks. :-)
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] series of site issues

2009-07-23 Thread Lisa Wilcox
I'm at the point of tearing my hair out. 

I have a site that I've got a series of issues on.

 

First of all the font doesn't seem to stay universal from the main content
with 3 boxes to the wide content.

The three boxes in the main content don't seem to want to align. I have
tried min-height and I have the height set to auto to flow in text.

On the wide content pages, the center background image doesn't want to show
up and it seems to separate from the top bg  gif.

Any assistance on this would be appreciated. 

 

http://www.webgirlwebdesigns.com/testing/StPaulsv1/index.html

 

 

Lisa Wilcox 

 

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] series of site issues

2009-07-23 Thread David Laakso
Lisa Wilcox wrote:
 I'm at the point of tearing my hair out. 

 I have a site that I've got a series of issues on.

  

 First of all the font doesn't seem to stay universal from the main content
 with 3 boxes to the wide content.
   



Well, tearing your hair out is better than throwing yourself out a 
closed window. Sort of.


Lets get it started with:

Change this:

bbody {
color: #00;
background: #FF;
font-family: Arial, Helvetica, sans-serif;
line-height: 14px;
}

To:

body {
color: #000;
background: fff;
font-family: Helvetica Neue, Arial, sans-serif;
line-height: normal;
}





 http://www.webgirlwebdesigns.com/testing/StPaulsv1/index.html


 Lisa Wilcox 

  

   

~d




__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] series of site issues

2009-07-23 Thread David Laakso
Lisa Wilcox wrote:

 The three boxes in the main content don't seem to want to align. I have
 tried min-height and I have the height set to auto to flow in text.
   

The correction for the 3 boxes in Safari, Opera, FF; and, IE 6/7/8 is:

#Div2 { 
/*height:auto;*/
/*min-height:350px;*/
min-height: 420px;
}
#Div3 {
/*height:auto;*/
/*min-height:350px;*/
min-height: 420px;
}
#Div4 {
/*height:auto;*/
/*min-height:350px;*/
min-height: 420px;
}


  

 http://www.webgirlwebdesigns.com/testing/StPaulsv1/index.html

  

 Lisa Wilcox 

   

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] series of site issues

2009-07-23 Thread David Laakso
Lisa Wilcox wrote:
 On the wide content pages, the center background image doesn't want to show
 up and it seems to separate from the top bg  gif.

   
  

 http://www.webgirlwebdesigns.com/testing/StPaulsv1/index.html

 Lisa Wilcox 

  
   




I only looked at the wide-content directory page.

I could not find the image. I guessd at it's name and found
'wide-content-center.gif'
on your server.

All I could come up with is you may have forgotten to include the inline 
style for it.

When I added this immediately below the inline style for the top.gif it 
appeared and repeated down to the bottom.gif
div style=background: 
url('http://www.webgirlwebdesigns.com/testing/StPaulsv1/images/wide-content-center.gif')
 
top left repeat-y;










__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/