![]() | |
![]() |
| | Thread Tools | Display Modes |
#11
| |||
| |||
|
|
This is my first go using a CSS only layout. After many versions (about 7 of them) this is the final version that I would like critiqued. http://www.limelightstudio.com.au/iss/html/ |
#12
| |||
| |||
|
|
Works great in that ancient Mac browser IE5.5. AFAIK, there is no IE 5.5 for Mac. Is that a typo? |
#13
| |||
| |||
|
|
Titus A Ducksass - AKA broken-record wrote: Toby Inkster wrote: lime wrote: http://www.limelightstudio.com.au/iss/html/ Using a <ul> for the navigation menu would enhance its appeal to non-CSS browsers. If you don't like the margin and bullet points that a ul> often carries with it, you can use CSS to remove them. Do you have a working example of the css for this technique Toby.... That I do, but my example goes further than just playing with the margin and removing bullet points. It adds pretty borders and a roll-over effect. http://examples.tobyinkster.co.uk/css-rollovers It's pretty thoroughly documented, so a quick read should make it obvious which bits of CSS are relevant to the OP's page. |
#14
| |||
| |||
|
|
On Sat, 13 Nov 2004 13:23:19 +0000, Toby Inkster usenet200411 (AT) tobyinkster (DOT) co.uk> wrote: http://examples.tobyinkster.co.uk/css-rollovers It's pretty thoroughly documented, so a quick read should make it obvious which bits of CSS are relevant to the OP's page. Is there a method that allows drop down menus? |
#15
| |||
| |||
|
|
To put things in perspective, IE6(SP1) is older than IE/Mac 5.2.3. How about another perspective? Mac IE 5 hasn't had any real embellishments where its CSS capabilities are concerned. It's still stuck on good support of CSS1 and dodgy support of CSS2. Overflow is quite broken. Handling inline lists is dreadful. I could go on, but I won't. It may well have been ahead of its time when it was first released, but it has most certainly fallen rather far behind the pack. Its bugs and deficiencies have given me, personally, more trouble than IE6 has. |
#16
| |||
| |||
|
|
On Sat, 13 Nov 2004 19:13:49 GMT, Titus A Ducksass - AKA broken-record me (AT) neverumind (DOT) com> wrote: On Sat, 13 Nov 2004 13:23:19 +0000, Toby Inkster usenet200411 (AT) tobyinkster (DOT) co.uk> wrote: http://examples.tobyinkster.co.uk/css-rollovers It's pretty thoroughly documented, so a quick read should make it obvious which bits of CSS are relevant to the OP's page. Is there a method that allows drop down menus? It's along the line of Toby's page: you markup your menu's as lists and if you require a second level, the dropdown part, you nest a new list for that. Then, with CSS, you play a bit of hide and seek with those nested lists. Hide it when the page displays plainly, but when a relevant menu item gets hovered or gets the focus, display the nested list: markup: ul id="menu" li><a href="#">item 1</a></li li><a href="#">item 2</a></li li><a href="#">item 3</a ul li><a href="#">item 3.1</a></li li><a href="#">item 3.2</a></li /ul /li /ul css: ul#menu ul li ul { display:none; } ul#menu ul li:hover ul { display:block; /*or any other display you need*/} You can add all the styles you want to both the list items and the anchor elements, for hover, positioning, size and all. Will work in almost all modern graphical browsers. But remember: IE6 is not a _modern_ browser; hence it doesn't work in IE :-( For one, IE doesn't like hovering on anything else than the anchor element and secondly, it cannot play hide and seek with content. I've got some examples on line (text is in Dutch, but the markup and the styles are pretty streight forward): http://home.wanadoo.nl/b.de.zoete/vo...vereffect.html |
#17
| |||
| |||
|
|
On Sat, 13 Nov 2004 21:03:24 +0100, "Barbara de Zoete" b_de_zoete (AT) hotmail (DOT) com> wrote: |
|
Hmmm, what do you do when the majority of your users are IE orientated - captive audience in my case. |
|
Cant use java script as a lot of my users are in fact blind. |
#18
| |||
| |||
|
|
Henry wrote: Toby Inkster wrote: lime wrote: http://www.limelightstudio.com.au/iss/html/ Looks pretty good. Text for the main body of the page is a bit small though. Still bigger than browser' menus. Smaller than my browser's menu. Smaller than the main navigation. 85% the size of my preferred font size. (My preferred font size is 12pt, which is 17px on my monitor.) |

#19
| |||
| |||
|
|
Lachlan Hunt wrote: - Page title, "Welcome", in <h2 Not so sure about that. "Welcome" is not much of a heading, is it? It doesn't separate parts of the document. The whole page is a welcome page. Either make it part of <h1>, or put it in a <div>. |
#20
| |||
| |||
|
|
Henry wrote: You must have some weird settings. No, not really. I have configured my browser for 12pt text -- the same sized text on the menus and on web pages. Sounds pretty sensible to me, doesn't it to you? |


|
The original poster used "font-size:85%" on his page, taking the font size of the content down to 0.85x12pt = 10.2pt, which is smaller than the 12pt text in my menus. |


![]() |
| Thread Tools | |
| Display Modes | |
| |