September 5, 200818 yr Hi there! I'm working on a club website for my university and I've hit a bit of a problem. I've got it looking how I want it to in Firefox now, and mostly how I want it to in IE7 but there's a bit of a random indent on my first paragraph on the page. I wrapped the whole "welcome" section in an li tag and i realise that should normally cause an indent, which it did in firefox at first until I reduced the padding on it, but IE7 seems to want to make the first line of the first paragraph indented which has baffled me since I've tried changing the padding and even tried getting rid of the li tag all together and even that didn't do anything which makes me think it isn't the li tags problem. I'll carry on looking into it today, but if anyone has had a similar problem or if you know of a solution, it would be greatly appreciated. Thanks! http://angelssin.co.uk/WAC/ that's the URL, keep in mind I've yet to test it in IE6. Joy.
September 5, 200818 yr When you removed it that should have fixed the problem as I just copied your code removed it and tested it in ie6 and the indent went away. But anyways if you must have it, you need to put the ul tag around it. Internet explorer recognizes it as wrong code and displays it as a space. Putting the ul tag around it corrects the code and will display it correctly. and make sure to strip it of padding and styles like below. <ul style="padding:0; margin:0; list-style:none"><li><p>W.A.C is a Students Union Society based in the University of Wolverhampton.</p> <p>W.A.C was set up to encourage the growth of local interest in original Japanese Animation. Our society hosts twice-weekly meets where we view, discuss, read, draw and even animate anime and manga.</p> <p>The Society is open to all Students and faculty within the University. We also allow people outside the University to attend as visitors.</p> <p>We're a friendly lot and we welcome anyone interested in joining.</p> <p>Interested in getting involved? check out our <a href="">forums</a> and let us know who you are and what you're into. Be sure to check there for events you can join and other such things!</p></li></ul>
September 5, 200818 yr Author That fixed it, cheers A bit of a dumb error on my behalf! Thanks for the help.
Create an account or sign in to comment