Question

Bulleted list not placed correctly beside floated image - margin ignored

Asked by: alicia1234

I've tried everything I can think of to solve this problem, but I just can't make it work right.
www.wallewu.com/bulletproblem.html

The second bulleted list is displaying correctly: indented 20px. But the first one, which is to the right of a div that is floated left, does not display correctly. The div has a 15px right margin, and it's as if this margin is being totally ignored in the case of the bulleted list.

I do not have the luxury of being able to change the HTML code. Can only change the CSS. This problem exists in a much more complicated page, but I've extracted only the relevant code and also made the style sheet internal to help me debug it, and that's the "bulletproblem.html" code that I've posted for you to see.


I need help! ;-)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Bullet Problem</title>
<style type="text/css">
* { margin: 0; padding: 0; border: none; }
img {border: 0; }
html { background-color: #49176D; }
/* Set default font size to 10px (62.5% of 16, the browser default) as basis for em measurements */
body { font: 62.5%/180% "Trebuchet MS", Arial, Helvetica, sans-serif; color: #454545; }  
div#clearfloat { clear: both; }
h1 { font-size: 1.9em; font-weight: bold; padding-left: 5px; }
h2 { font-size: 1.6em; font-weight: bold; padding-left: 5px; }
h3 { font-size: 1.5em; font-weight: bold; padding-left: 5px; }
p { font-size: 1.3em; line-height: normal; margin: 0; padding: 5px 5px 5px 5px; }
ul { list-style-type: disc; list-style: outside; padding: 5px 5px 5px 5px;  }
ol { list-style-type: decimal; padding: 5px 5px 5px 5px; }
li { font-size: 1.3em; }
div#bodywrapper { width: 556px; margin: 0 auto; padding: 10px 0 18px 0; background-color: #49176D; }
div#centerwrapper { float: left;  width: 548px;  margin-left: 4px; margin-right: 4px;  }
div#phototextwrapper { background-repeat: repeat-x; background-position: bottom right; padding: 10px 10px 10px 10px; background-color: #FFFFFF; }
div#content {  }
div#content h2 { font-size: 1.6em; color: #454545; padding: 0 5px 5px 5px; margin: 0; }
div#content ul, div#content ol { margin-left: 35px; margin-right: 20px; }
div#photo { float: left; width: 165px; padding-top: 5px; margin-right: 15px; }
div#pageheader { height: 25px; background-color: #49176D; border: 1px solid #FFFFFF; border-bottom: none; padding-top: 2px; }
div#hdricon { float: left; padding-left: 5px; }
divl#hdrtxt { float: left; }
div#hdrtxt h1 { line-height: normal; color: #FFFFFF; }
div#actions { text-align: right; }
div#actions a { font-size: 1.1em; }
</style>
</head>
<body>
<div id="bodywrapper">
  <div id="centerwrapper">
    <div id="pageheader">
      <div id="hdricon">
        <img src="icon_hr_sm.png" alt="Human Resources Icon" />				
      </div> <!-- hdricon -->
      <div id="hdrtxt">
        <h1>Human Resources</h1>
      </div> <!-- hdrtext -->
    </div> <!--pageheader -->
    <div id="phototextwrapper">
      <div id="photo">
        <img src="placeholder_photo.png" alt="Placeholder Photo" />				
      </div> <!-- photo -->
      <div id="content">
        <h2>Headline goes here	</h2>
        <p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. </p>
        <ul>
          <li>First bulleted list item #1</li>
          <li>First bulleted list item #2</li>
          <li>First bulleted list item #3</li>
        </ul>
        <p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus.</p>
        <ul>
          <li>Second bulleted list item #1</li>
          <li>Second bulleted list item #2</li>
          <li>Second bulleted list item #3</li>
        </ul>
        <p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus. Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus. Aenean a ligula in lectus molestie scelerisque. </p>
      </div> <!-- content -->
      <div id="actions">
          <p><a href="#" target=_"blank">Click here for more info</a></p>
      </div> <!-- actions -->
    </div> <!-- phototextwrapper-->
  </div> <!-- centerwrapper -->
</div> <!-- body wrapper -->
</body>
</html>

                                  
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:

Select allOpen in new window

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2009-09-05 at 11:27:57ID24710112
Topic

Cascading Style Sheets (CSS)

Participating Experts
2
Points
500
Comments
11

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. CSS margin problems on IE6 with floating DIV
    It's amazing how things so simple can turn into a problem when there is this little thing you overlooked... please help! I have this simple file (see code below) and it works fine on IE7, FF2, OP9.22 and Safari 3. BUT in IE6 the two margins of the floating PageCont and barCo...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: kadabaPosted on 2009-09-05 at 12:05:42ID: 25267353

Hi,


 " The div has a 15px right margin, and it's as if this margin is being totally ignored in the case of the bulleted list. "

I dint get you. What do you meant by this?

change div#photo  to the below code

div#photo { float: left; width: 165px; padding-top: 5px; margin-right: 20px; }

you will see the indentation change.

 

by: alicia1234Posted on 2009-09-05 at 12:40:05ID: 25267448

Yes, that does change the indentation - on both the <p> tag and the <ul> tags, which is not what I want. The <p> tag is being displayed properly. The first bulleted list should be indented 20px from the text above it, just as the second bulleted list is. The image is 165x135, including the grey shadow, and the <img> tag is inside the "photo" div, which has a right margin of 15px. The bullets of the first list are actually overlapping the margin area.

See screen shot here.
http://screencast.com/t/p2kzY2cnP

 

by: kadabaPosted on 2009-09-06 at 00:07:46ID: 25268979

Hi Alicia,

I went through the css model. I came up with this. replace the below classes. Does this suffice?

ul { list-style-type: disc; list-style: outside; padding: 5px 5px 5px 5px;  list-style-position: inside; display:table-row;}
ol { list-style-type: decimal; padding: 5px 5px 5px 5px;  list-style-position: inside; display:table-row;}
li { font-size: 1.3em; margin-left:20px;}

                                              
1:
2:
3:

Select allOpen in new window

 

by: kadabaPosted on 2009-09-06 at 00:08:51ID: 25268985

Here s the complete html[modified which you had pasted]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Bullet Problem</title>
<style type="text/css">
* { margin: 0; padding: 0; border: none; }
img {border: 0; }
html { background-color: #49176D; }
/* Set default font size to 10px (62.5% of 16, the browser default) as basis for em measurements */
body { font: 62.5%/180% "Trebuchet MS", Arial, Helvetica, sans-serif; color: #454545; }  
div#clearfloat { clear: both; }
h1 { font-size: 1.9em; font-weight: bold; padding-left: 5px; }
h2 { font-size: 1.6em; font-weight: bold; padding-left: 5px; }
h3 { font-size: 1.5em; font-weight: bold; padding-left: 5px; }
p { font-size: 1.3em; line-height: normal; margin: 0; padding: 5px 5px 5px 5px; }
/* Changed the UL Style and the OL style with properties "list-style-position: inside; display:table-row;"*/
ul { list-style-type: disc; list-style: outside; padding: 5px 5px 5px 5px;  list-style-position: inside; display:table-row;}
ol { list-style-type: decimal; padding: 5px 5px 5px 5px;  list-style-position: inside; display:table-row;}
/* Changed the li style with property "margin-left:20px;"*/
li { font-size: 1.3em; margin-left:20px;}
div#bodywrapper { width: 556px; margin: 0 auto; padding: 10px 0 18px 0; background-color: #49176D; }
div#centerwrapper { float: left;  width: 548px;  margin-left: 4px; margin-right: 4px;  }
div#phototextwrapper { background-repeat: repeat-x; background-position: bottom right; padding: 10px 10px 10px 10px; background-color: #FFFFFF; }
div#content { }
div#content h2 { font-size: 1.6em; color: #454545; padding: 0 5px 5px 5px; margin: 0; }
div#content ul, div#content ol { margin-left: 35px; margin-right: 20px; }
div#photo { float:left; width: 165px; padding-top: 5px; margin-right: 15px; }
div#pageheader { height: 25px; background-color: #49176D; border: 1px solid #FFFFFF; border-bottom: none; padding-top: 2px; }
div#hdricon { float: left; padding-left: 5px; }
divl#hdrtxt { float: left; }
div#hdrtxt h1 { line-height: normal; color: #FFFFFF; }
div#actions { text-align: right; }
div#actions a { font-size: 1.1em; }
</style>
</head>
<body>
<div id="bodywrapper">
  <div id="centerwrapper">
    <div id="pageheader">
      <div id="hdricon">
        <img src="icon_hr_sm.png" alt="Human Resources Icon" />                         
      </div> <!-- hdricon -->
      <div id="hdrtxt">
        <h1>Human Resources</h1>
      </div> <!-- hdrtext -->
    </div> <!--pageheader -->
    <div id="phototextwrapper">
      <div id="photo">
        <img src="placeholder_photo.png" alt="Placeholder Photo" />                             
      </div> <!-- photo -->
      <div id="content">
        <h2>Headline goes here  </h2>
        <p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. </p>
        <ul>
          <li>First bulleted list item #1</li>
          <li>First bulleted list item #2</li>
          <li>First bulleted list item #3</li>
        </ul>
        <p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus.</p>
        <ul>
          <li>Second bulleted list item #1</li>
          <li>Second bulleted list item #2</li>
          <li>Second bulleted list item #3</li>
        </ul>
        <p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus. Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus. Aenean a ligula in lectus molestie scelerisque. </p>
      </div> <!-- content -->
      <div id="actions">
          <p><a href="#" target=_"blank">Click here for more info</a></p>
      </div> <!-- actions -->
    </div> <!-- phototextwrapper-->
  </div> <!-- centerwrapper -->
</div> <!-- body wrapper -->
</body>
</html>

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:

Select allOpen in new window

 

by: darkapplePosted on 2009-09-06 at 01:05:13ID: 25269090

try once using list-style to inside.

ul { list-style-type: disc; list-style: inside; padding: 5px 5px 5px 5px;  }

                                              
1:

Select allOpen in new window

 

by: alicia1234Posted on 2009-09-06 at 06:43:21ID: 25269901

 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CSHEA%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings>  <o:RelyOnVML/>  <o:TargetScreenSize>1024x768</o:TargetScreenSize> </o:OfficeDocumentSettings></xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument>  <w:View>Normal</w:View>  <w:Zoom>0</w:Zoom>  <w:PunctuationKerning/>  <w:ValidateAgainstSchemas/>  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>  <w:Compatibility>   <w:BreakWrappedTables/>   <w:SnapToGridInCell/>   <w:WrapTextWithPunct/>   <w:UseAsianBreakRules/>   <w:DontGrowAutofit/>  </w:Compatibility> </w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles></xml><![endif]--><style><!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal      {mso-style-parent:"";      margin:0in;      margin-bottom:.0001pt;      mso-pagination:widow-orphan;      font-size:10.0pt;      font-family:Arial;      mso-fareast-font-family:"Times New Roman";}a:link, span.MsoHyperlink      {color:blue;      text-decoration:underline;      text-underline:single;}a:visited, span.MsoHyperlinkFollowed      {color:purple;      text-decoration:underline;      text-underline:single;}@page Section1      {size:8.5in 11.0in;      margin:1.0in 1.25in 1.0in 1.25in;      mso-header-margin:.5in;      mso-footer-margin:.5in;      mso-paper-source:0;}div.Section1      {page:Section1;}--></style><!--[if gte mso 10]><style> /* Style Definitions */ table.MsoNormalTable      {mso-style-name:"Table Normal";      mso-tstyle-rowband-size:0;      mso-tstyle-colband-size:0;      mso-style-noshow:yes;      mso-style-parent:"";      mso-padding-alt:0in 5.4pt 0in 5.4pt;      mso-para-margin:0in;      mso-para-margin-bottom:.0001pt;      mso-pagination:widow-orphan;      font-size:10.0pt;      font-family:"Times New Roman";      mso-ansi-language:#0400;      mso-fareast-language:#0400;      mso-bidi-language:#0400;}</style><![endif]-->

Thanks! It ALMOST works!

<o:p> </o:p>

It looks good in Firefox:

http://screencast.com/t/BWCOT0tv

<o:p> </o:p>

But in IE7, the second list is indented too much, and thefirst list still isn't indented enough.

http://screencast.com/t/30cxgGA8if

<o:p> </o:p>

I could live with this as it's much better than it was, butI would really like to get it "perfect"!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Bullet Problem</title>
<style type="text/css">
* { margin: 0; padding: 0; border: none; }
img {border: 0; }
html { background-color: #49176D; }
/* Set default font size to 10px (62.5% of 16, the browser default) as basis for em measurements */
body { font: 62.5%/180% "Trebuchet MS", Arial, Helvetica, sans-serif; color: #454545; }  
div#clearfloat { clear: both; }
h1 { font-size: 1.9em; font-weight: bold; padding-left: 5px; }
h2 { font-size: 1.6em; font-weight: bold; padding-left: 5px; }
h3 { font-size: 1.5em; font-weight: bold; padding-left: 5px; }
p { font-size: 1.3em; line-height: normal; margin: 0; padding: 5px 5px 5px 5px; }
/*** OLD ul ***/
/* ul { list-style-type: disc; list-style: outside; padding: 5px 5px 5px 5px;  } */
/*** NEW ul ***/
ul { list-style-type: disc; padding: 5px 5px 5px 5px; list-style-position: inside; display:table-row; }
ol { list-style-type: decimal; padding: 5px 5px 5px 5px; }
/*** OLD li ***
/* li { font-size: 1.3em; } */
/*** NEW li ***/
li { font-size: 1.3em; margin-left: 20px; }
div#bodywrapper { width: 556px; margin: 0 auto; padding: 10px 0 18px 0; background-color: #49176D; }
div#centerwrapper { float: left;  width: 548px;  margin-left: 4px; margin-right: 4px;  }
div#phototextwrapper { background-repeat: repeat-x; background-position: bottom right; padding: 10px 10px 10px 10px; background-color: #FFFFFF; }
div#content {  }
div#content h2 { font-size: 1.6em; color: #454545; padding: 0 5px 5px 5px; margin: 0; }
div#content ul, div#content ol { margin-left: 35px; margin-right: 20px; }
div#photo { float: left; width: 165px; padding-top: 5px; margin-right: 15px; }
div#pageheader { height: 25px; background-color: #49176D; border: 1px solid #FFFFFF; border-bottom: none; padding-top: 2px; }
div#hdricon { float: left; padding-left: 5px; }
divl#hdrtxt { float: left; }
div#hdrtxt h1 { line-height: normal; color: #FFFFFF; }
div#actions { text-align: right; }
div#actions a { font-size: 1.1em; }
</style>
</head>
 
<body>
<div id="bodywrapper">
	<div id="centerwrapper">
		<div id="pageheader">
			<div id="hdricon">
				<img src="icon_hr_sm.png" alt="Human Resources Icon" />				
			</div> <!-- hdricon -->
			<div id="hdrtxt">
				<h1>Human Resources</h1>
			</div> <!-- hdrtext -->
		</div> <!--pageheader -->
		<div id="phototextwrapper">
			<div id="photo">
				<img src="placeholder_photo.png" alt="Placeholder Photo" />				
			</div> <!-- photo -->
			<div id="content">
				<h2>Headline goes here	</h2>
				<p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. </p>
				<ul>
					<li>First bulleted list item #1</li>
					<li>First bulleted list item #2</li>
					<li>First bulleted list item #3</li>
				</ul>
				<p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus.</p>
				<ul>
					<li>Second bulleted list item #1</li>
					<li>Second bulleted list item #2</li>
					<li>Second bulleted list item #3</li>
				</ul>
				<p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus. Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus. Aenean a ligula in lectus molestie scelerisque. </p>
			</div> <!-- content -->
						
			<div id="actions">
				<p><a href="#" target=_"blank">Click here for more info</a></p>
			</div> <!-- actions -->
		</div> <!-- phototextwrapper-->
	</div> <!-- centerwrapper -->
</div> <!-- body wrapper -->
</body>
</html>
                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:

Select allOpen in new window

 

by: alicia1234Posted on 2009-09-06 at 06:44:02ID: 25269909

No idea why all that "junk" is at the beginning of my previous post - sorry about that!

 

by: alicia1234Posted on 2009-09-06 at 06:59:06ID: 25269968

I got rid of the extra margin problem in the 2nd list in IE7 by removing the 35px margin from the content div's ul. So now the only problem that remains is that in IE7, the first list still is not indented enough.

In IE7: http://screencast.com/t/q06nqgDuH

Looks good in Firefox: http://screencast.com/t/clvIYsMLtCc

I also moved the styling changes to the content div's ul and li, not applying them to my global ul and li tags. So here's the code now:




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Bullet Problem</title>
<style type="text/css">
* { margin: 0; padding: 0; border: none; }
img {border: 0; }
html { background-color: #49176D; }
/* Set default font size to 10px (62.5% of 16, the browser default) as basis for em measurements */
body { font: 62.5%/180% "Trebuchet MS", Arial, Helvetica, sans-serif; color: #454545; }  
div#clearfloat { clear: both; }
h1 { font-size: 1.9em; font-weight: bold; padding-left: 5px; }
h2 { font-size: 1.6em; font-weight: bold; padding-left: 5px; }
h3 { font-size: 1.5em; font-weight: bold; padding-left: 5px; }
p { font-size: 1.3em; line-height: normal; margin: 0; padding: 5px 5px 5px 5px; }
/*** DON'T CHANGE THESE STYLES - change the ul, ol and li in the content div ***/
ul { list-style-type: disc; list-style-position: outside; padding: 5px 5px 5px 5px;  } 
ol { list-style-type: decimal; padding: 5px 5px 5px 5px; }
li { font-size: 1.3em; } 
 
div#bodywrapper { width: 556px; margin: 0 auto; padding: 10px 0 18px 0; background-color: #49176D; }
div#centerwrapper { float: left;  width: 548px;  margin-left: 4px; margin-right: 4px;  }
div#phototextwrapper { background-repeat: repeat-x; background-position: bottom right; padding: 10px 10px 10px 10px; background-color: #FFFFFF; }
div#content {  }
div#content h2 { font-size: 1.6em; color: #454545; padding: 0 5px 5px 5px; margin: 0; }
/* div#content ul, div#content ol { margin-left: 35px; margin-right: 20px; } */
 
/*** STYLING CHANGES FOR UL AND LI SHOULD BE HERE, NOT ON GLOBAL TAGS ***/
div#content ul, div#content ol { padding: 5px 5px 5px 5px; list-style-position: inside; display:table-row;  margin-right: 20px; }
div#content ul {  list-style-type: disc; }
div#content ol {  list-style-type: decimal; }
div#content li { margin-left: 20px; }
 
div#photo { float: left; width: 165px; padding-top: 5px; margin-right: 15px; }
div#pageheader { height: 25px; background-color: #49176D; border: 1px solid #FFFFFF; border-bottom: none; padding-top: 2px; }
div#hdricon { float: left; padding-left: 5px; }
divl#hdrtxt { float: left; }
div#hdrtxt h1 { line-height: normal; color: #FFFFFF; }
div#actions { text-align: right; }
div#actions a { font-size: 1.1em; }
</style>
</head>
 
<body>
<div id="bodywrapper">
	<div id="centerwrapper">
		<div id="pageheader">
			<div id="hdricon">
				<img src="icon_hr_sm.png" alt="Human Resources Icon" />				
			</div> <!-- hdricon -->
			<div id="hdrtxt">
				<h1>Human Resources</h1>
			</div> <!-- hdrtext -->
		</div> <!--pageheader -->
		<div id="phototextwrapper">
			<div id="photo">
				<img src="placeholder_photo.png" alt="Placeholder Photo" />				
			</div> <!-- photo -->
			<div id="content">
				<h2>Headline goes here	</h2>
				<p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. </p>
				<ul>
					<li>First bulleted list item #1</li>
					<li>First bulleted list item #2</li>
					<li>First bulleted list item #3</li>
				</ul>
				<p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus.</p>
				<ul>
					<li>Second bulleted list item #1</li>
					<li>Second bulleted list item #2</li>
					<li>Second bulleted list item #3</li>
				</ul>
				<p>Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus. Aenean a ligula in lectus molestie scelerisque. Aenean a ligula in lectus molestie scelerisque. Sed vulputate tincidunt metus. Aenean a ligula in lectus molestie scelerisque. </p>
			</div> <!-- content -->
						
			<div id="actions">
				<p><a href="#" target=_"blank">Click here for more info</a></p>
			</div> <!-- actions -->
		</div> <!-- phototextwrapper-->
	</div> <!-- centerwrapper -->
</div> <!-- body wrapper -->
</body>
</html>
                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:

Select allOpen in new window

 

by: kadabaPosted on 2009-09-06 at 07:34:30ID: 25270073

Hi,

Oh I tested with IE 8 and FireFox...

Just ran with IE7 using the compatibility mode and I can see the difference...

IE8 is much more compliant with the CSS Standards than IE7.

I will see what I can do.

cheers,
kadaba

 

by: kadabaPosted on 2009-09-07 at 02:15:25ID: 25273663

Hi Alicia,

Sorry I couldn't get anything on that.

I was told from one of my friends, Wong  
- the margin of ul for IE7 and IE8 are different and it would not be probable to match them up.

I guess you would have to live with the solution that was given earlier.( There s always room for improvement :) )
.

In case I do get some lead on this will definitely keep you informed.

Good luck.

 

by: alicia1234Posted on 2009-09-07 at 07:44:43ID: 25275392

Thanks for trying to make it "perfect". I can live with what I have.

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...