POV-Ray : Newsgroups : povray.off-topic : Web design IE mysterium Server Time
11 Oct 2024 03:15:37 EDT (-0400)
  Web design IE mysterium (Message 43 to 52 of 52)  
<<< Previous 10 Messages Goto Initial 10 Messages
From: Rune
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 08:10:45
Message: <47988e55$1@news.povray.org>
"Warp" wrote:
> One argument which has always been given is that you
> don't know the screen size of the user, and that some users might want
> to view the page in a small hand-held device.

My site is about high resolution 3D graphics and multimedia applications 
mainly. It makes no sense to target hand-held devices, or blind people for 
that matter in this case. Rather, on their high resolution monitors, which I 
*know* my intended audience have, I want the site to look good.

Turns out lots of other people want their sites to look good too. Sure, many 
avoid tables and style markup directly in the content, but they still use 
loads of nested divs which have no purpose other than helping control the 
look. What I'm saying is that I don't see how using tables is worse that 
using all those leyout-specific nested divs.

>  (What I find puzzling is that "they" preached separation of content
> and layout from the dawn of the WWW, yet "they" hate CSS

Who does that? I find that most people love CSS, including me... I just take 
certain liberties, that's all, but I still would hate to design a site again 
without the aid of CSS.

Rune
-- 
http://runevision.com


Post a reply to this message

From: scott
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 08:27:08
Message: <4798922c$1@news.povray.org>
> My site is about high resolution 3D graphics and multimedia applications 
> mainly. It makes no sense to target hand-held devices, or blind people for 
> that matter in this case. Rather, on their high resolution monitors, which 
> I *know* my intended audience have, I want the site to look good.

And even if you do have a site that could be used by mobile devices, you 
usually make a site dedicated for that device.  I use mobile.msn.com (or 
whatever it is) all the time on my phone to check my hotmail - it would be 
totally absurd if it had all the same content as the main hotmail site, no 
matter what layout was used.


Post a reply to this message

From: Nicolas Alvarez
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 08:43:25
Message: <479895fd$1@news.povray.org>
Rune escribió:
> Rather, on their high resolution monitors, which I 
> *know* my intended audience have, I want the site to look good.

And you use a fixed-width layout?

Your website is around half the width of my screen resolution, leaving a 
lot of wasted space on the sides. Enlarging the fonts breaks the layout 
quite a bit, since your rounded boxes specify sizes in pixels instead of 
ems.


Post a reply to this message

From: Nicolas Alvarez
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 08:44:19
Message: <47989633@news.povray.org>
Rune escribió:
> "Nicolas Alvarez" wrote:
>> <a> can only contain inline elements, and <h2> is a block element; so 
>> <a><h2></h2></a> isn't allowed.
> 
> Hmm, so I have to replace the h2 with span and loose that semantic 
> information. Not good...

No, you have to invert it; move the link *inside* the heading.


Post a reply to this message

From: scott
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 08:58:54
Message: <4798999e@news.povray.org>
> Enlarging the fonts breaks the layout

Enlarging *just* the fonts breaks pretty much anything.  Try using a browser 
that scales the whole page properly, it looks nice at 200% here and fills my 
monitor perfectly!


Post a reply to this message

From: Rune
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 10:48:37
Message: <4798b355$1@news.povray.org>
"Nicolas Alvarez" wrote:

>> "Nicolas Alvarez" wrote:
>>> <a> can only contain inline elements, and <h2> is a block element; so 
>>> <a><h2></h2></a> isn't allowed.
>>
>> Hmm, so I have to replace the h2 with span and loose that semantic 
>> information. Not good...
>
> No, you have to invert it; move the link *inside* the heading.

That would break the hover-effekt.

Rune
-- 
http://runevision.com


Post a reply to this message

From: Nicolas Alvarez
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 12:09:14
Message: <4798c63a$1@news.povray.org>
Rune escribió:
> That would break the hover-effekt.

Are you using the :hover pseudo-class? AFAIK it can be used on any 
element (like the whole rounded box), not only a link.


Post a reply to this message

From: Phil Cook
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 12:09:50
Message: <op.t5f1zci6c3xi7v@news.povray.org>
And lo on Thu, 24 Jan 2008 01:24:15 -0000, Rune <aut### [at] runevisioncom>  
did spake, saying:

> Just an update:
>
> Transparent PNGs with drop shadows (and antialiasing) are now used and  
> even
> work in IE 6. I also changed the background.
> http://runevision.com/temp/new_design_test.htm

Be aware of some of the flaws in AlphaImageLoader that may still be  
lurking around. Memory hits, links not working when positioned over some  
images, can't be treated like a background image, obviously won't  
validate. Doesn't look like you've got any of these problems from my first  
glance (bar css validation), but if something goes screwy in IE around one  
of these it'd be the first thing I'd look at.

Oh BTW like the lined background, which scrolls smoothly TYVM.

-- 
Phil Cook

--
I once tried to be apathetic, but I just couldn't be bothered
http://flipc.blogspot.com


Post a reply to this message

From: Phil Cook
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 12:14:56
Message: <op.t5f17pboc3xi7v@news.povray.org>
And lo on Thu, 24 Jan 2008 17:08:56 -0000, Nicolas Alvarez  
<nic### [at] gmailisthebestcom> did spake, saying:


>> That would break the hover-effekt.
>
> Are you using the :hover pseudo-class? AFAIK it can be used on any  
> element (like the whole rounded box), not only a link.

Three guesses which version of which browser only allows :hover on <a>  
elements.

-- 
Phil Cook

--
I once tried to be apathetic, but I just couldn't be bothered
http://flipc.blogspot.com


Post a reply to this message

From: Rune
Subject: Re: Web design IE mysterium
Date: 24 Jan 2008 19:18:55
Message: <47992aef$1@news.povray.org>
"Phil Cook" wrote:
> Be aware of some of the flaws in AlphaImageLoader that may still be 
> lurking around. Memory hits

May have that - haven't checked.

> links not working when positioned over some images

There are workarounds for that, which I have used.

> can't be treated like a background image

Yep, can only be in the upper left corner and *can't repeat*. Which is why I 
use border images in IE 6 that are 25 pixels by 30000 pixels to match some 
of the very long boxes. :O Take no disk space at all, but may not be good on 
memory... I wish I could find a better solution for that. Luckily, in all 
other browsers, those images are never used.

> obviously won't validate.

Well, the IE 6 specific style sheet is inside a comment tag, so won't be 
visible to validators or other browsers.

> Doesn't look like you've got any of these problems from my first  glance 
> (bar css validation), but if something goes screwy in IE around one  of 
> these it'd be the first thing I'd look at.

I seem to get rather slow loading of the pages, which may be caused by the 
huge border images. I haven't observed any other problems.

> Oh BTW like the lined background, which scrolls smoothly TYVM.

:)

Rune
-- 
http://runevision.com


Post a reply to this message

<<< Previous 10 Messages Goto Initial 10 Messages

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.