473,507 Members | 2,443 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

IE living up to its reputation...

I recently decided to do a web page, and this time decided to get with the
times and use CSS to its fullest potential... BUT, I am having great
difficulty getting IE to do as it is told... Consider the following page:
http://marc.fearby.com/cssproblem.htm

In Mozilla, the space between the items in the navigation DIV is as it
should be
In IE, the space between the items is much greater...

I've done all I can to specify margin and padding values but to no avail.
I'm almost going bald from pulling my hair out on this one. Any help would
be greatfully appreciated.
Oh, and if anyone is feeling particularly benevolent, any ideas why 1) IE
puts a carriage return after the "asdfasdf" link in the navigation box and
2) why both Mozilla and IE display the "asdfasdf" link smaller, even though
it is 0.7em like the rest of the text in that box? The "div.linkbox"
selectors are the pertinent styles to look at.

Thanks HEAPS :-)
Jul 20 '05 #1
6 1403

"Frostillicus" <fr**********@iinetnilspamos.net.au> wrote in message
news:3f**********************@freenews.iinet.net.a u...
I recently decided to do a web page, and this time decided to get with the
times and use CSS to its fullest potential... BUT, I am having great
difficulty getting IE to do as it is told... Consider the following page:
http://marc.fearby.com/cssproblem.htm

In Mozilla, the space between the items in the navigation DIV is as it
should be
In IE, the space between the items is much greater...

I've done all I can to specify margin and padding values but to no avail.
I'm almost going bald from pulling my hair out on this one. Any help would
be greatfully appreciated.
Oh, and if anyone is feeling particularly benevolent, any ideas why 1) IE
puts a carriage return after the "asdfasdf" link in the navigation box and
2) why both Mozilla and IE display the "asdfasdf" link smaller, even though it is 0.7em like the rest of the text in that box? The "div.linkbox"
selectors are the pertinent styles to look at.

Thanks HEAPS :-)

I'm using IE and Opera on it now.

It's gotta be the list. IE puts extra padding in there, but you've set it
all to 0. Looks to me like it should be working. Hmm... try setting
line-height on the li elements. Shot in the dark.

And I cannot figure out the reason the a link is smaller. Try making some of
the other list items links, see if that's it. Try zeroing out margins and
padding on the div.linkbox a selector.

But what I do notice... and knowing you're new to CSS...

1) Why more than one h1? Pick one to be the h1, make the others h2, it'll
look better in text. Only one h1 per page. And don't include the crumbs in
the h1. You can style them to look like it, but they're not really part of
the heading, are they?

2) In the text version, all lowercase headers sometimes looks dumb, though
it works great in your CSS layout. If you agree, type it with normal
capitalization and style it {text-transform: lowercase;}.

3) Put your style element within the head element. It's not valid XHTML
unless they're in up there.
Jul 20 '05 #2
> I recently decided to do a web page, and this time decided to get with the
times and use CSS to its fullest potential... BUT, I am having great
difficulty getting IE to do as it is told... Consider the following page:
http://marc.fearby.com/cssproblem.htm


Validate the page first.

URL:http://validator.w3.org/check?verbos...cssproblem.htm

You should also note that your <style> is outside the <head> element when it
should be _inside_ the <head> element.

Regards,
Nick.
Jul 20 '05 #3
> I'm using IE and Opera on it now.

It's gotta be the list. IE puts extra padding in there, but you've set it
all to 0. Looks to me like it should be working. Hmm... try setting
line-height on the li elements. Shot in the dark.
Thanks for the suggestion. I tried specifying the height of the li elements
manually in the link now called "Manual style override" but this still
didn't work. Having seen another reply to my message, I'm now doing it the
way w3.org are, and it's working much better. The only reason I chose lists
was because of this article I saw:
http://www.alistapart.com/articles/slashdot/
And I cannot figure out the reason the a link is smaller. Try making some of the other list items links, see if that's it. Try zeroing out margins and
padding on the div.linkbox a selector.

But what I do notice... and knowing you're new to CSS...
I'm not new to CSS, but I am new to trying to do everything in CSS to avoid
using tables to space everything out
1) Why more than one h1? Pick one to be the h1, make the others h2, it'll
look better in text. Only one h1 per page. And don't include the crumbs in
the h1. You can style them to look like it, but they're not really part of
the heading, are they?
I was intending to put the crumbs in H1 - mainly because no matter how much
time I spend trying to create a heading it just looks stupid and since I
have no artistic talent, I though "to hell with it, I'll just make the
breadcrumbs my heading" ...for now, at least.
2) In the text version, all lowercase headers sometimes looks dumb, though
it works great in your CSS layout. If you agree, type it with normal
capitalization and style it {text-transform: lowercase;}.
I'll try that soon. Thanks.
3) Put your style element within the head element. It's not valid XHTML
unless they're in up there.


done. It was linked before I uploaded it and only made it an inline style to
make it easier for any good samaritan to quickly see what I was doing
without having to access the stylesheet separately.
Jul 20 '05 #4
> Validate the page first.

URL:http://validator.w3.org/check?verbos...fearby.com/css
problem.htm
You should also note that your <style> is outside the <head> element when it should be _inside_ the <head> element.


It is validated now, thanks. I usually avoid w3.org because finding anything
useful on that site is a complete bitch (IMHO). Maybe things have now
changed since I last decided never to visit that site again.

Thanks.
Jul 20 '05 #5
Frostillicus wrote:
It is validated now, thanks. I usually avoid w3.org because finding anything
useful on that site is a complete bitch (IMHO). Maybe things have now
changed since I last decided never to visit that site again.


Try the search engine with the right keywords ;-), you will love it!
--
Anne van Kesteren
<http://www.annevankesteren.nl/>
Jul 20 '05 #6

"Frostillicus" <fr**********@iinetnilspamos.net.au> wrote in message
news:3f**********************@freenews.iinet.net.a u...
I'm using IE and Opera on it now.

It's gotta be the list. IE puts extra padding in there, but you've set it all to 0. Looks to me like it should be working. Hmm... try setting
line-height on the li elements. Shot in the dark.
Thanks for the suggestion. I tried specifying the height of the li

elements manually in the link now called "Manual style override" but this still
didn't work. Having seen another reply to my message, I'm now doing it the
way w3.org are, and it's working much better. The only reason I chose lists was because of this article I saw:
http://www.alistapart.com/articles/slashdot/
And I cannot figure out the reason the a link is smaller. Try making some
of
the other list items links, see if that's it. Try zeroing out margins
and padding on the div.linkbox a selector.

But what I do notice... and knowing you're new to CSS...


I'm not new to CSS, but I am new to trying to do everything in CSS to

avoid using tables to space everything out
1) Why more than one h1? Pick one to be the h1, make the others h2, it'll look better in text. Only one h1 per page. And don't include the crumbs in the h1. You can style them to look like it, but they're not really part of the heading, are they?
I was intending to put the crumbs in H1 - mainly because no matter how

much time I spend trying to create a heading it just looks stupid and since I
have no artistic talent, I though "to hell with it, I'll just make the
breadcrumbs my heading" ...for now, at least.


The logical main heading of the page is "Subcategory". You can use whatever
font, effects, and letter spacing you want for it. You don't need to be an
artistic genius for this!
Jul 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2254
by: rbt | last post by:
Is this mathematically correct? def inflation(): start = int(str.strip(raw_input("How much money do you need each month at the start of retirement: "))) inflation =...
0
856
by: Nicol Nghia | last post by:
Dear All, Is there anyone of you is origin Vietnamese living in US or Europe or Japanese? We are looking for partners and friends for developing .NET controls, and for developing software...
0
986
by: Krag | last post by:
Hi Well here at you, it will be necessary still to return. Posted via DevelopmentNow.com Groups http://www.developmentnow.com
3
1305
by: HAOBBoy | last post by:
Hello I am using a MAP as an associative array. The map automatically sorts by key. How can I stop this feature. I will may value as FIFO. I mean if I have the keys Key=value ...
11
2279
by: mase | last post by:
I've built a new ASP.NET web app with the CSLA framework. The site runs fine with a small number of users, but once there is any traffic the CPU spikes at 100%. I went through and made many updates...
1
2030
by: KBTibbs | last post by:
My ASP.NET page generates some HTML, then sticks it into a hiddenfield so a javascript can access it and write it to a popup window. I had to disable validation for this page, as HTML inside a...
0
1240
by: majorcolletmkvu | last post by:
living with a crack addict http://cracks.12w.net F R E E
0
7223
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7321
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7377
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7488
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5623
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3179
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1544
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
762
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
412
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.