View Full Version : Difference between div spaces
arthurse
May 19th, 2007, 12:59 AM
I'm making this website: http://www.deusmoleque.com/neto but at the left (menu) there is a difference of space between the first line separator and the word "curriculum" viewing at Internet Explorer and Firefox. The space of Internet Explorer is the correct one.
Can anyone help me adjusting to the correct space?
(sorry about my english)
icio
May 19th, 2007, 05:04 AM
The problem comes from you using a <p> tag around the first set of links. In Internet Explorer the margin-bottom of this equal to 1 line space, but not in firefox. You need to resolve this problem by puting a <br> after curriculum in the same way as you have in the other lists.
Where you have
<p class="paragrafo1"><span class="style1"><span class="style2">Antonio Neto - Bauru-SP, Brasil</span><br>
55 14 3227-7621<br>
55 14 9133-7201<br>
<a href="mailto:neto@deusmoleque.com">neto@deusmoleque.com</a><br>
</span><a href="http://www.deusmoleque.com" target="_blank">curriculum [+]</a></p>
try
<span class="paragrafo1"><span class="style1"><span class="style2">Antonio Neto - Bauru-SP, Brasil</span><br>
55 14 3227-7621<br>
55 14 9133-7201<br>
<a href="mailto:neto@deusmoleque.com">neto@deusmoleque.com</a><br>
</span><a href="http://www.deusmoleque.com" target="_blank">curriculum [+]</a><br></p>
With that said, I recommend trying to create the website using XHTML Transitional/XHTML Strict.
Hope that helps :thumb:
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.