Digital Point Forums
Quick Collect

Go Back   Digital Point Forums > Design & Development > HTML & Website Design
Google Analytics
Log In to view
your analytics

Reply
 
Thread Tools
  #1  
Old Sep 28th 2007, 7:01 pm
tayiper's Avatar
tayiper tayiper is offline
Hand of A'dal
 
Join Date: Apr 2006
Location: Ljubljana, Slovenia, Europe
Posts: 417
tayiper is on a distinguished road
Question The problem with 'br' tag in a list in IE 6

Hello all. This time I am curious: does anyone know why Internet Explorer let's say "ignores" the <br /> tag in an unordered list (it's basically a menu with links to all the website's pages) on my main general personal Tadej Persic's website ??!


Here below's the code in question:

Code:
<ul id="navmenu"><li><strong><span class="tenpx">index</span></strong></li><li><a href="my-websites.html" title="my websites">my websites</a></li><li><a href="my-blogs.html" title="my blogs">my blogs</a></li><br /><li><a href="my-articles.html" title="my articles">my articles</a></li><li><a href="my-principles.html" title="my principles">my principles</a></li><li><a href="my-computing.html" title="my computing">my computing</a></li><li><a href="my-projects.html" title="my projects">my projects</a></li><br /><li><a href="about-me.html" title="about me">about me</a></li><li><a href="about-site.html" title="about site">about site</a></li><li><a href="the-news.html" title="the news">the news</a></li><br /><li><a href="sitemap.html" title="sitemap">sitemap</a></li></ul>

The screenshot of the list in FF 2:




The screenshot of the list in IE 6:




P.S. - Oh and could anyone please test it (look at it ) in IE broser version 7 since I don't have it installed on my computer??!


thanks in advance, tayiper
__________________
If you want to, please check out my main general personal http://tadejpersic.50webs.com/ website, which is a some sort of a navigational site that basically only describes and lists links to my other websites and blogs.

Last edited by tayiper; Sep 28th 2007 at 7:26 pm. Reason: fixed the website's URL
Reply With Quote
  #2  
Old Sep 28th 2007, 7:04 pm
longhornfreak's Avatar
longhornfreak longhornfreak is offline
of the Nightfall
 
Join Date: Dec 2006
Posts: 2,057
longhornfreak is a jewel in the roughlonghornfreak is a jewel in the roughlonghornfreak is a jewel in the rough
I've never used breaks in my lists, you could do any of the following

1) set up separate lists and put a break in between the diffrent lists
2) try using the paragraph <p></p>

Your site is suspended for me so I can't view it

Go here to get IE.
Reply With Quote
  #3  
Old Sep 28th 2007, 7:21 pm
tayiper's Avatar
tayiper tayiper is offline
Hand of A'dal
 
Join Date: Apr 2006
Location: Ljubljana, Slovenia, Europe
Posts: 417
tayiper is on a distinguished road
Quote:
Originally Posted by longhornfreak View Post
Your site is suspended for me so I can't view it
Urghhh sorry, I did it again. You see, obviously it should be http://tadejpersic.50webs.com/index.html instead of http://tadejpersic.50webs.com/index.htm ...


tayiper
__________________
If you want to, please check out my main general personal http://tadejpersic.50webs.com/ website, which is a some sort of a navigational site that basically only describes and lists links to my other websites and blogs.
Reply With Quote
  #4  
Old Sep 28th 2007, 8:54 pm
krt's Avatar
krt krt is offline
Twilight Vanquisher
 
Join Date: May 2007
Location: Australia
Posts: 829
krt will become famous soon enoughkrt will become famous soon enough
One thing IE does better than FF, no browser should be rendering those line breaks.

I achieve this with a "separator" list item, e.g.

<li>Link</li>
<li>Link</li>
<li class="separator"> </li>
<li>Link</li>
<li>Link</li>

With the following CSS (so it doesn't show a bullet):

li.separator { list-style: none; }
Reply With Quote
  #5  
Old Sep 28th 2007, 9:42 pm
nabil_kadimi's Avatar
nabil_kadimi nabil_kadimi is offline
Twilight Vanquisher
 
Join Date: Nov 2006
Location: Morocco
Posts: 841
nabil_kadimi is a jewel in the roughnabil_kadimi is a jewel in the roughnabil_kadimi is a jewel in the rough
have you tried adding the <br /> before the closing </li> tag

here is how I get the same output

html4strict Code:
<ul id="navmenu">
  <li><strong><span class="tenpx">index</span></strong></li>
  <li><a href="my-websites.html" title="my websites">my websites</a></li>
  <li><a href="my-blogs.html" title="my blogs">my blogs</a><br /><br /></li>
  <li><a href="my-articles.html" title="my articles">my articles</a></li>
  <li><a href="my-principles.html" title="my principles">my principles</a></li>
  <li><a href="my-computing.html" title="my computing">my computing</a></li>
  <li><a href="my-projects.html" title="my projects">my projects</a><br /><br /></li>
  <li><a href="about-me.html" title="about me">about me</a></li>
  <li><a href="about-site.html" title="about site">about site</a></li>
  <li><a href="the-news.html" title="the news">the news</a><br /><br /></li>
  <li><a href="sitemap.html" title="sitemap">sitemap</a></li>
</ul>
__________________
Free tech support... Ask Nabil

Last edited by nabil_kadimi; Sep 28th 2007 at 9:54 pm.
Reply With Quote
  #6  
Old Sep 29th 2007, 6:07 am
Colbyt Colbyt is offline
Starcaller
 
Join Date: Feb 2006
Posts: 3,054
Colbyt is a splendid one to beholdColbyt is a splendid one to beholdColbyt is a splendid one to beholdColbyt is a splendid one to beholdColbyt is a splendid one to beholdColbyt is a splendid one to beholdColbyt is a splendid one to behold
It looks the same in IE7 as it does in 6.
Reply With Quote
  #7  
Old Sep 29th 2007, 3:05 pm
tayiper's Avatar
tayiper tayiper is offline
Hand of A'dal
 
Join Date: Apr 2006
Location: Ljubljana, Slovenia, Europe
Posts: 417
tayiper is on a distinguished road
Hey, thanks much to all for your educative replies!!


tayiper
__________________
If you want to, please check out my main general personal http://tadejpersic.50webs.com/ website, which is a some sort of a navigational site that basically only describes and lists links to my other websites and blogs.
Reply With Quote
  #8  
Old Sep 29th 2007, 3:17 pm
tayiper's Avatar
tayiper tayiper is offline
Hand of A'dal
 
Join Date: Apr 2006
Location: Ljubljana, Slovenia, Europe
Posts: 417
tayiper is on a distinguished road
Quote:
Originally Posted by nabil_kadimi View Post
have you tried adding the <br /> before the closing </li> tag
Oh and yes, that indeed worked, thanks much once again ...


tayiper
__________________
If you want to, please check out my main general personal http://tadejpersic.50webs.com/ website, which is a some sort of a navigational site that basically only describes and lists links to my other websites and blogs.
Reply With Quote
  #9  
Old Sep 29th 2007, 5:10 pm
Zippo's Avatar
Zippo Zippo is offline
Hand of A'dal
 
Join Date: Sep 2007
Posts: 311
Zippo is on a distinguished road
Quote:
Originally Posted by nabil_kadimi View Post
Rent this space (PM me)
sorry, cant help myself !
Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
List of Blogs without Nofollow tag? edbri871 Link Development 20 Oct 15th 2007 12:23 pm
What's the problem with my cached title tag? greenlight Search Engine Optimization 4 Jul 18th 2007 5:52 pm
Many pages with the same title and H2 tag. is it a problem? kks_krishna Placement / Reviews / Examples 1 Apr 15th 2007 5:15 am
Problem with script tag in blogger pipes Blogging 2 Aug 27th 2006 2:36 am


All times are GMT -8. The time now is 7:36 am.