WIP - paulahorn.net
Some of you have seen this already ( adi / roz / wit ;p )
Wit wanted me to create a layout that was easy to navigate while using her art.
Here's what i've got so far
( live version - http://paulahorn.net )
Eve
18 years ago
Oh I bet she loves it! I know I love all that red :)
Adiene
18 years ago
nodnod , like the changes :D
Verileah
18 years ago
I like the braces around the type - that's such a nice look :D
WildHunt
18 years ago
Very nice, Vex!
Merreck
18 years ago
This is a great design! I love how all of your websites look so smooth and shiney. :D
It looks great in FireFox... but here's how it's displaying in IE...
It looks great in FireFox... but here's how it's displaying in IE...
Vex
18 years ago
EW hmm i need to add the min-height hack to IE :(
I forgot about that when i removed a few of those paragraphs, thanks for checking that merreck !
[edit]-- hopefully i fixed it, not at an IE-capable computer to test it.
really wish the browsers would use all the same CSS commands >.<
I forgot about that when i removed a few of those paragraphs, thanks for checking that merreck !
[edit]-- hopefully i fixed it, not at an IE-capable computer to test it.
really wish the browsers would use all the same CSS commands >.<
Verileah
18 years ago
Fucking IE. Feel like explaining the min-height hack?
Lessa
18 years ago
I'm on IE Vex and its looking good now. :)
Merreck
18 years ago
Displaying correctly in IE now! :D
Verileah
18 years ago
High speed hax0rs correction -and- conformation!
Vex
18 years ago
well i used to use a javascript that minicked the min/max height/width commands, but my search engine query today turned up something even simpler and just as effective
From what I gather, "height" in IE works like min-height in Firefox/Safari
furthermore, a quick hack for anything that doesnt validate ( pssh, validation is overrated, its all about getting it presented, no matter what ! )
anything with a _ in front is ignored by firefox and read by IE. dirty, I know. but it werks!
Verileah;82294
Fucking IE. Feel like explaining the min-height hack?
well i used to use a javascript that minicked the min/max height/width commands, but my search engine query today turned up something even simpler and just as effective
#maincontent { min-height: 700px }
// IE hack
* html #maincontent { height: 700px }
From what I gather, "height" in IE works like min-height in Firefox/Safari
furthermore, a quick hack for anything that doesnt validate ( pssh, validation is overrated, its all about getting it presented, no matter what ! )
#maincontent {
min-height: 700px;
_height: 700px;
}
anything with a _ in front is ignored by firefox and read by IE. dirty, I know. but it werks!
Verileah
18 years ago
oh! wow that is super helpful, particularly the bit about the _ :D. Thanks!