 |
|
03-17-2007, 09:26 AM
|
#1 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
Internet Explorer 6.0 problem
Ok, since this is a different problem, and most of my div situations are celared up, i now am stumped on this.
if you have inter net explorer, great! thats what this is about. I noticed this at school. I showed my computer teacher my "fake" site and the school computers use IE 6. heres the site http://www.battlegear.org/1JackAssBo....com/index.php
View it in internet explorer 6...what is with that gap between the buttons and the nav and such? im stumped. i looked for stupid breaks that i might of left, but no, found nothing.
helppl0xkai
|
|
|
03-17-2007, 10:30 AM
|
#2 (permalink)
|
|
Inactive
Join Date: 09-22-06
Location: Los Angeles
Posts: 678
Latest Blog: None
|
Fun stuff!
Oddly enough, it's the closing FORM tag that's causing the extra space in MSIE6. In order to maintain the nesting structure, you can overcome MSIE6's default behavior by applying a little style to that form:
Code:
FORM#login {
margin-bottom:0px;
}
The code looks a lot better, now.  You will find some situations where a space/return/tab between a tag and it's content results in layout issues, but those don't seem to be affecting this particular layout. i.e.
Code:
<a href="link.html">
<img src="img.jpg" id="button" border="0">
</a>
The break between the start of the anchor and the IMG tag will sometimes make MSIE insert a line break. Actually, that was the first thing I looked at in addressing this thread's problem.
|
|
|
03-17-2007, 02:06 PM
|
#3 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
yeah. when i used tables, i had
and that little break cause alot of problems
aha. thanks. never knew margins could be so usefull
and is there anyway to fix my current news header? im having that problem again where it wont move up. i dont want to stretch out divider_2, because that would result in the current news header still out of place, messing up the final product
Last edited by Jackassboy : 03-17-2007 at 02:20 PM.
|
|
|
03-17-2007, 05:39 PM
|
#4 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
and is there anyway to fix my current news header? im having that problem again where it wont move up. i dont want to stretch out divider_2, because that would result in the current news header still out of place, messing up the final product. I've tried giving it it's own div, but that doesn't help.
|
|
|
03-17-2007, 06:55 PM
|
#5 (permalink)
|
|
Contributing Member
Join Date: 02-10-07
Posts: 369
Latest Blog: None
|
I would not worry about old browsers. I would be more concerned about how it looks in IE7
|
|
|
03-17-2007, 07:39 PM
|
#6 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
no, its like that in firefox AND ie7/6
ill work on center alignment at teh end, but i want to figure out why the current news header is like that
i've tried
Code:
img {
vertical-align:top;
}
but, that doesnt seem to work either. i assume this should go in my css+div help thread
Last edited by Jackassboy : 03-17-2007 at 07:48 PM.
|
|
|
03-18-2007, 07:41 AM
|
#7 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
well alright, i've slept on it. ill just make the divider_2 stretch, but then i'll shorten the news content background to match up.
maybe it would of worked if the current news header AND the divider_2 were one image >_>
|
|
|
03-18-2007, 09:01 AM
|
#8 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
Yay, im practicly done. but one problem. the newest friend.
http://www.battlegear.org/1JackAssBo....com/index.php
i've tried giving everything widths and heights, but nothing has helped. ive tried putting it in the same div as the newestfirend_header, but i have to linebreak it down to fit, and i can't get it to match up
|
|
|
03-18-2007, 01:40 PM
|
#9 (permalink)
|
|
Contributing Member
Join Date: 02-10-07
Posts: 369
Latest Blog: None
|
Try shrinking the width of your picture an amount equal to the cell or div padding. It might only be a pixel or 2 too wide.
|
|
|
03-18-2007, 02:14 PM
|
#10 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
hmm....it is perfectly equal..? There is no padding?
|
|
|
03-18-2007, 02:28 PM
|
#11 (permalink)
|
|
Contributing Member
Join Date: 02-10-07
Posts: 369
Latest Blog: None
|
Quote:
Originally Posted by Jackassboy
hmm....it is perfectly equal..? There is no padding?
|
From the stylesheet, red color added:
Quote:
.content_content {
padding-top: 5px;
padding-left: 20px;
background: url(images/content_content.png);
}
.content {
padding: 5px;background: url(images/nav_content.png);
}
.div_fonts {
font-family: verdana;
font-size: 9;
font-weight: none;
}
.table_border {
border: 1px solid #000000;
|
I hope I copied the right stylesheet. Viewing your source was confusing.
There may be others. I just copied and posted one to protect your code.
|
|
|
03-18-2007, 02:31 PM
|
#12 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
youve been mistaken  . thats not my code D=.
just replace index.php with style.css
http://www.battlegear.org/1JackAssBo....com/style.css
i need the picture to be a background image so i can have that "View_all" button there, but the header is an image. maybe its my index coding?
|
|
|
03-18-2007, 02:40 PM
|
#13 (permalink)
|
|
Contributing Member
Join Date: 02-10-07
Posts: 369
Latest Blog: None
|
I got the code I will look it over some more. Right now I have to do something else.
Get back to you later tonight.
|
|
|
03-18-2007, 02:45 PM
|
#14 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
ah. thanks. im puzzled by this. i just really want to stop using tables D=
|
|
|
03-18-2007, 07:22 PM
|
#15 (permalink)
|
|
Contributing Member
Join Date: 02-10-07
Posts: 369
Latest Blog: None
|
Quote:
Originally Posted by Jackassboy
ah. thanks. im puzzled by this. i just really want to stop using tables D=
|
I think when you use 24 divs on the same page that it is no improvement over tables. It is just the current fad way of doing it. Div-mania I think it is called. At least you skipped the absolute positions.
IMO, you have one or more misplaced </div> statements. With 24 on one page it would not be hard to do.
Divs work like this <div>open1 <div>open2 <div>open3......</div>close3 </div>close2 </div>close1
The first </div> always closes the last open that has not been closed. Sorta like ( ) for math operations.
You have 24 opens and 24 closes, but at least one of them is in the wrong place.
Count them open and closed or build the page one div at a time from top left to right and down one level and repeat. That is the only way you are going to find the problem
|
|
|
03-19-2007, 04:09 AM
|
#16 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
yeah :/. your right about the improvement part. not much improvement at all. and yeah, ive been doing it left to right ever since i started :p. i cant find the problem  .hmmm eh, i could just go back to tables
|
|
|
03-19-2007, 10:16 AM
|
#17 (permalink)
|
|
v7n Mentor
Join Date: 11-22-06
Location: Phoenix, AZ
Posts: 1,805
Latest Blog: None
|
Hey Jackassboy, where are you with this? It appears that you have most if not all of this sorted out? The current state looks pretty close. You have the one empty bottom right corner so I'm not sure if the other pieces are where you want them now or not. Got plans for that corner or are you still working on rearranging some pieces?
__________________
Experimenting
|
|
|
03-19-2007, 12:09 PM
|
#18 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
it goes newest firend then the why have we come to be? and need more? image. those are supposed to be in the same row, and that is the end.
|
|
|
03-19-2007, 12:46 PM
|
#19 (permalink)
|
|
Inactive
Join Date: 03-13-07
Location: Turn around...
Posts: 119
Latest Blog: None
|
well, i had to add onto images, and cut parts off of others, but it is finished. no tables :s. not really an improvement, but its done. There are just so many divs because i have MAIN divs to hold the SUB divs IE
Code:
<div id="hold_1">
<div id="content">
<img src.... />
</div>
</div>
|
|
|
03-19-2007, 02:33 PM
|
#20 (permalink)
|
|
Contributing Member
Join Date: 02-10-07
Posts: 369
Latest Blog: None
|
I checked on you this morning and it looked like you were working one of those puzzles where you slide the pieces around.
It looks real nice at the moment.
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|