Issue in IE6

This is a discussion on "Issue in IE6" within the Web Page Design section. This forum, and the thread "Issue in IE6 are both part of the Design Your Website category.



 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1  
Old Jul 12th, 2007, 10:53
New Member
Join Date: Jul 2007
Location: Manchester
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Issue in IE6

Hi, I have a major issue with IE6. Have a look at the site. It works fine in FF2 and IE7.

The OSS logo on the left hand side seems to get a white line to the right and being new to this and obviously loathing IE6 could someone please advise how I could get rid of it. Thanks very much.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jul 12th, 2007, 12:34
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Issue in IE6

wow ... that code is a mess!

I don't know ... Have you tried adding a background-color: #000; to #mainbody?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jul 12th, 2007, 13:25
New Member
Join Date: Jul 2007
Location: Manchester
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Issue in IE6

Yes that already exists.

I have only just started out and this is my first web build after progressing from design. I have been building this site with my trainer however he is unavailable to ask at the minute. Can you possibly tell me why the code is a mess? Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jul 12th, 2007, 13:39
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Issue in IE6

Quote:
Originally Posted by aholmes View Post
Yes that already exists.
hmmm ... I don't think so.

Code: Select all
table.mainbody,
table.usermodules,
table.sections {
	width: 100%;
	padding: 0;
}
1) The main thing that makes this code a mess is the indentation. Sounds silly but when you want help, indentation in code makes it much easier to read.

Granted I use Firebug which indents the code properly itself, but sometimes I do like to do a View Source and check it out 'cause Firebug doesn't show the DOCTYPE.

2) You have empty paragraphs?!

Code: Select all
<p align="justify">
&nbsp;
</p>
<p align="justify">
&nbsp;
</p>
<p align="justify">
&nbsp;
</p>
<p align="justify">
&nbsp;
</p>
<p align="justify">
&nbsp;
</p>
<p align="justify">
&nbsp;
</p>
<div align="justify">
</div>
<p align="justify">
&nbsp;
</p>
That's a big no-no ... if you need to "create" space, use the padding or margin properties.

3) Use a STRICT doctype.

4) Why are you using tables for the middle portion? It's not data ...

5) You have classes and id with the same name. That causes confusing when reading the code. You code has to be semantic ... meaning when you look at the markup, it should make sense. You should be able to make a mental picture (and have it right) of exactly how the site "can" look. With names like .mainbody and #mainbody this draws ALOT of confusion.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jul 12th, 2007, 14:07
Elite Veteran
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Issue in IE6

Here's your code for that logo
Code: Select all
<div class="moduletable">
            <a href=""><img style="margin: 5px; width: 200px; height: 69px; float: left; padding-bottom: 120px; border-right: none" src="images/stories/logo_updated.jpg" border="0" alt="logo" title="logo" width="200" height="69" /></a></div>
First of all the <a href=""> is empty. You need to put in "/"
All the margin, float, padding and border need to be placed into css.

Often times in IE6, if you have spaces between the last element and the closing div, you will see white. So delete all the extra spaces in the code between </a> and </div>

See if that solves that problem. If not come back.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Jul 12th, 2007, 14:08
Elite Veteran
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Issue in IE6

What's this for?
Quote:
<div id="vert-menu"> </div>
and this???
Code: Select all
    <h3>
                    home picture                </h3>

Last edited by Lchad; Jul 12th, 2007 at 14:10.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Jul 12th, 2007, 14:16
Elite Veteran
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Issue in IE6

Add a specific width to this table column
Code: Select all
<td class="left">
                        <div class="padding">
                            <div id="vert-menu">                          </div>
                          <div class="moduletable"><a href=""><img style="margin: 5px; width: 200px; height: 69px; float: left; padding-bottom: 120px; border-right: none" src="images/stories/logo_updated.jpg" border="0" alt="logo" title="logo" width="200" height="69" /></a></div>
                <div class="moduletable">

                            <h3>
                    home picture                </h3>
                <img style="margin: 5px 10px; float: left; width: 198px; height: 204px" src="images/stories/homepic.png" alt="homepic.png" title="homepic.png" width="198" height="204" />        </div>
                                </div>                    </td>
Something like this in red:
Code: Select all
<td width="210" class="left">
                        <div class="padding">
                            <div id="vert-menu">                          </div>
                          <div class="moduletable"><a href=""><img style="margin: 5px; width: 200px; height: 69px; float: left; padding-bottom: 120px; border-right: none" src="images/stories/logo_updated.jpg" border="0" alt="logo" title="logo" width="200" height="69" /></a></div>
                <div class="moduletable">

                            <h3>
                    home picture                </h3>
                <img style="margin: 5px 10px; float: left; width: 198px; height: 204px" src="images/stories/homepic.png" alt="homepic.png" title="homepic.png" width="198" height="204" />        </div>
                  </div>                    </td>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Jul 13th, 2007, 10:00
New Member
Join Date: Jul 2007
Location: Manchester
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Issue in IE6

Thanks very much for your help, I will try the code however in response to all your comments about the code, is the code different because the site has been built in Joomla?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
ie6, issue

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
JS issue acrikey JavaScript Forum 6 Jul 25th, 2007 17:45
CSS issue in IE7 bluetech Web Page Design 6 Jul 3rd, 2007 15:36
css issue acrikey Web Page Design 4 May 24th, 2007 16:01
Help Odd Issue? drappendix Web Page Design 8 Aug 9th, 2006 17:53
IE issue Pheonix Web Page Design 2 Dec 2nd, 2005 21:58


All times are GMT. The time now is 23:06.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

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