Re: [css-d] Positioning problem

2005-09-10 Thread pandy

Steven Olson wrote:

 http://www.fofex.com/simply_annies/template.html



In IE there is a small band where the background shows through between the
logo area and the text area.  The problem persists when the div containing
the menu is commented out in the html.


Hee-hee! It's the old images-in-table-and-whitespace-in-the-code problem. 
The space isn't between the DIV's. It's _in_ the #logo-area DIV.


img src=images/banner-top.gif border=0 alt=/div
  
^^
Write the above on one line without whitespace between tags. :-)

pandy

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Quick help, getting centered text in IE 6.0

2005-09-09 Thread pandy

Scott Haneda wrote:

Working on a site for a client:
http://www.workforcecorp.com/services/
Has some issues where the text being centered and such


Line 14 in your HTML source:
div align=center

http://evolt.org/article/css-d/17/15341/

pandy

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] No hack I've tried gives OL its numbers in %$#@ IE6

2005-09-09 Thread pandy

BJ wrote:

Validating page here:
http://www.ip-chip-search.com/what-we-do/

Validating css here (with a bit embedded in above):
http://www.ip-chip-search.com/wp-content/themes/circuitsearch/style.css

I have tried what seems like almost every hack on this and can't get the 
numbers to show in that list in the content section of the page.


You don't need a hack. You have disabled IE's default margin on OL, which 
is where it places the list marker.


.content ol {
width: 80%;
margin: 0 auto;

So, either remove the 'auto' and let IE do its thing or add left margin or 
padding to OL, alternatively left padding to LI. Doesn't matter. Just let 
there be some space where a marker can live.


pandy

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/