Just one html answer can help prevent premature balding
April 1, 2011 2:12 PM Subscribe
Please help me insert line breaks in a Wordpress site that will appear the same in IE and Firefox.
So I'm trying to fix the code on www [dot] chicagocodes [dot] com/seminars/building-green-chicago-2011/
You'll see (in Firefox) some headshots, followed by a modest line break, and then "Building Green Chicago Topics." In IE, there is a massive gulf of white between the images and the text. I've tried a combination of < br > and < p >tags; currently, there is one < p > with a 300 pixel padding on the bottom. The problem is, I can't get the html right on both browsers. The above text either nestles up to the right of the last headshot or drops down way too far.
Can you suggest some html that will make the images and text play nice across browsers? If you tell me do something in the CSS, I'm going to gladly file away your suggestion for a later date. I am mildly comfortable with html; I'm no where near savvy enough to start messing with the website's soul.
posted by Terminal Verbosity to computers & internet (5 answers total) 6 users marked this as a favorite
If you want more padding above that paragraph, include it in that paragraph's style attribute (e.g. margin-top: 20px) rather than by trying to use extra <br> tags to fake it.
posted by ook at 2:26 PM on April 1, 2011