473,568 Members | 2,762 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

CSS side menu -- validated and still doesn't work in IE

Thanks to all who've replied. I understand about the small font, and
will work on that next, after I solve this problem.

www.simi-therapy.com/badstylesheet is the page
http://www.simi-therapy.com/badstyle...screen-alt.css

I've cleaned up my HTML completely, and both it and the CSS page now
completely validate at w3.org . This page works great in Mozilla and
Opera, but not IE. (The pages below the index page come up unstyled,
because I didn't change their stylesheet addresses)

If you double-click on one of the sidebar links, the first word of the
body text next to it highlights. I'm not very spatial, and I'm
definitely a CSS rookie, but I'm thinking that there must be a
"container" problem and I just can't see what it is.

Again, all help is very much appreciated.

Deborah
Feb 5 '06 #1
4 1130
Someone elsewhere gave me this suggestion, and it has made the links
work, but now the appearance on hover is inconsistent.

added a line to this area

#side-bar {
width: 14em;
margin: 2.5em 0 0 1.25mm;
float: left;
clear: left;
position: relative; <!--added on suggestion; now links work but
hover inconsistent -->
}

Now I need to figure out why the hover varies, and I've lost the very
top of the side-bar that should say Answers to Questions. Still, it is
progress.

Deborah wrote:
Thanks to all who've replied. I understand about the small font, and
will work on that next, after I solve this problem.

www.simi-therapy.com/badstylesheet is the page
http://www.simi-therapy.com/badstyle...screen-alt.css

I've cleaned up my HTML completely, and both it and the CSS page now
completely validate at w3.org . This page works great in Mozilla and
Opera, but not IE. (The pages below the index page come up unstyled,
because I didn't change their stylesheet addresses)

If you double-click on one of the sidebar links, the first word of the
body text next to it highlights. I'm not very spatial, and I'm
definitely a CSS rookie, but I'm thinking that there must be a
"container" problem and I just can't see what it is.

Again, all help is very much appreciated.

Deborah

Feb 5 '06 #2
Deborah wrote:
Someone elsewhere gave me this suggestion, and it has made the links
work, but now the appearance on hover is inconsistent. position: relative; <!--added on suggestion; now links work but
hover inconsistent -->


I see that you have added exactly that to your style sheet. It will
break it as those are HTML comment markers, not /* CSS */ comment
markers. An error in the CSS and browsers are free to ignore parts or
all of the style sheet.

--
-bts
-Warning: I brake for lawn deer
Feb 5 '06 #3
Aargh! OK, that's fixed now. Still very interesting effect in IE. Back
to the puzzle.

Beauregard T. Shagnasty wrote:
Deborah wrote:

Someone elsewhere gave me this suggestion, and it has made the links
work, but now the appearance on hover is inconsistent.


position: relative; <!--added on suggestion; now links work but
hover inconsistent -->

I see that you have added exactly that to your style sheet. It will
break it as those are HTML comment markers, not /* CSS */ comment
markers. An error in the CSS and browsers are free to ignore parts or
all of the style sheet.

Feb 6 '06 #4
Deborah wrote:
Thanks to all who've replied. I understand about the small font, and
will work on that next,
Please do. Even at IE's Largest text size, it's just barely tolerable
for my reading pleasure.
www.simi-therapy.com/badstylesheet is the page
http://www.simi-therapy.com/badstyle...screen-alt.css


Presuming your problem is still with odd IE :hover effects on the menu...

You have apparently already found the answer, you just haven't applied
it everywhere it needs to be, yet. ;)

IE has a convoluted box model. If you spend some time at
<URL:http://www.positionise verything.net/explorer.html>
you may learn something about its oddities. Note that there are 2 common
methods of avoiding many IE peculiarities:
position:relati ve; and
zoom:1.0;

Apply position:relati ve to elements that are behaving strangely, or
their containers. If that doesn't do the trick, try zoom:1.0. One of
those is very likely to fix it. In your case, adding position:relati ve
to rule
#side-bar a
seems to do it.

BTW, are you aware that
..doNotDisplay {
display: none;
}
makes the element invisible to the most-used screen readers? Thus it is
creating the very problem you thought you were avoiding. You no doubt
got this display:none trick from an old tutorial. It doesn't work.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Feb 6 '06 #5

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

Similar topics

12
3377
by: MP Multimedia | last post by:
Hello everyone, I need help. I'm using a hierarchical menu made in javascript. When I used it in a one frame page, it came out fine. But now I need to change my page to 3 frames: a top frame, a left frame and a right frame. The menu is on the top frame and when hovering the categories, the sections appear under the left and right frame....
26
2809
by: Thomas Mlynarczyk | last post by:
Hi, Could some kind person using Mac or Linux (or others) please take a look at http://www.mlynarczyk-webdesign.de/tmp/menu/menu.html and tell me if the page renders as it should (screenshot provided on the page)? Never mind the colors, this is just to test the functionality. The page validates (HTML & CSS), and seems to "work" as...
3
1686
by: Ohad Young | last post by:
Hi, I have a frameset page that contains two frames: 1. the first frame, an aspx page, contains a menu for navigating in the website. 2. the second frame contains content, pdf, html or other aspx files The problem is that the menu activates a server-side methods when the user clicks on one of the menu items. However, from the server side...
2
1392
by: msnews.microsoft.com | last post by:
Hi All, I m facing a problem. As u know asp.net vallidators did not work in non-microsoft browsers. So for that i m using Server Side Solution. But i don't understand how can i show the validation summery with all messeges as they show on client side in IE. Means that when we submit the form to server in IE, then page is validated on the...
3
2049
by: msnews.microsoft.com | last post by:
Hi All, I m facing problem in Server Side Validation. For Example The Scenario is I have two fields on the page 1 Country Dropdown List 2 Province Textbox 3 State Dropdown List
9
1386
by: Jay | last post by:
I have an asp menu control with menu items navigateUrl set to come back to the same aspx page but with different values in a url token. this works, but it is causing all my asp controls to loose their values. Why is this happening? I thought I was "posting back" and my web controls with viewState=true should retain their values? Is this not...
6
5108
by: Deborah | last post by:
I'm a rookie, and I guess I know just enough to be dangerous. I found a great template website, openwebsign.org, and found an open source template I really liked that even came in 2 versions. Spent 2 weeks updating my website, put it up, **using the alternative** css sheet, and pfft, IE 6.0 can't see the side menu items as hyperlinks. ...
7
1798
by: joecap5 | last post by:
I have a main window from which I want to open a separate side menu window. I then want to create a list of items on that side menu by clicking on the item names in the main window. So far I am able to click on "Open Menu" and have the side menu open. I can then click on Items and have them added to the side menu using the innerHTML method or...
4
2460
by: Jason Carlton | last post by:
I'm working with the cookie-cutter code located here: http://www.jtricks.com/javascript/navigation/floating.html Very helpful script, BTW! I'm trying to modify it, though, so that the menu will scroll relative to a parent DIV instead of the main window. So, I have something like this (simplified so that you can copy it to your viewer...
0
7693
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7916
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8117
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7962
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6275
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5498
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5217
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3651
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
932
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.