|
nicholaswhite
|
 |
« Reply #15 on: March 17, 2002, 11:42:00 PM » |
|
Does Lunarpages support css for free websites?
|
|
|
|
|
Logged
|
|
|
|
|
kahlan
|
 |
« Reply #16 on: March 18, 2002, 06:06:00 AM » |
|
quote: Originally posted by Nicholas: Does Lunarpages support css for free websites?
Yes it does. I use it with my free account.
|
|
|
|
|
Logged
|
|
|
|
|
Brian
|
 |
« Reply #17 on: March 18, 2002, 08:42:00 AM » |
|
i don't think css is one of those fancy things that has to be server enabled like ssi, cgi, php etc. it should work on all hosts, cause i'm pretty sure it's like html, it's assembled in the browser.
-Brian
|
|
|
|
|
Logged
|
|
|
|
|
Psiphon
|
 |
« Reply #18 on: March 18, 2002, 03:44:00 PM » |
|
Well, currently the mime type is set up wrong for CSS. A strict browser like Mozilla fails to use the CSS file on Lunarpages because it's currently set to text/plain instead of text/css. Internet Explorer, on the other hand, is a bit more lax in that regard in that it will still display the CSS without a hitch. I hope Max (or whoever) can fix this because my pages look bad under Mozilla.
|
|
|
|
|
Logged
|
|
|
|
|
Brian
|
 |
« Reply #19 on: March 18, 2002, 11:34:00 PM » |
|
all pages look bad under mozilla....
|
|
|
|
|
Logged
|
|
|
|
|
Psiphon
|
 |
« Reply #20 on: March 19, 2002, 07:24:00 AM » |
|
quote: Originally posted by Brian: all pages look bad under mozilla....
More likely than not those pages that do look bad under Mozilla are just badly coded or use nonstandard stuff. I admit, Mozilla isn't perfect, but I've been using it as my main browser for quite a while now. It gets better with each new release. Still, the only reason my pages look bad under Mozilla is because of the incorrect mime type for CSS.
|
|
|
|
|
Logged
|
|
|
|
|
kahlan
|
 |
« Reply #21 on: March 19, 2002, 08:54:00 AM » |
|
but don't you set that in your code.
<LINK title="Dragon Girl's Realm Style Sheet" href="dragon.css" type="text/css" rel=StyleSheet>
|
|
|
|
|
Logged
|
|
|
|
|
Brian
|
 |
« Reply #22 on: March 19, 2002, 10:02:00 AM » |
|
even when you are putting the style's in the <HEAD> section of the page, you can still put
<style type="text/css">
blah blah
</style>
|
|
|
|
|
Logged
|
|
|
|
|
Psiphon
|
 |
« Reply #23 on: March 19, 2002, 01:31:00 PM » |
|
quote: Originally posted by Kahlan: but don't you set that in your code.
<LINK title="Dragon Girl's Realm Style Sheet" href="dragon.css" type="text/css" rel=StyleSheet>
Yes, you do and that's how I have it; but the server overrides it (or something of that sort). quote: Originally posted by Brian: even when you are putting the style's in the <HEAD> section of the page, you can still put
<style type="text/css">
blah blah
</style>
Yes, but having a separate CSS file makes it easier. That way you can just change whatever you want in the CSS file and not have to go into every single page to make changes.
|
|
|
|
|
Logged
|
|
|
|
|
TWebMan
|
 |
« Reply #24 on: March 23, 2002, 04:24:00 PM » |
|
I've got css all over my free site. No problems at all. Mixed up, too. Some in doc heads, others in separate files.
|
|
|
|
|
Logged
|
"Computers cause people to make more mistakes than any other invention in history, with the possible exception of handguns and tequila." - Unknown "Liberty of any kind is seldom lost all at once." - D. Hume Every day is an Ode to JoyThe planet will be fine... and so will your site
|
|
|
|
pirate
|
 |
« Reply #25 on: March 25, 2002, 05:20:00 AM » |
|
i thpught mozilla was loaded with spyware? well i dont even remember where i heard that. i have a question about tables: how do you make one that looks like this?btw hi everyone i am... new
|
|
|
|
|
Logged
|
|
|
|
|
kahlan
|
 |
« Reply #26 on: March 25, 2002, 12:01:00 PM » |
|
quote: Originally posted by She-Pirate: i thpught mozilla was loaded with spyware? well i dont even remember where i heard that. i have a question about tables: how do you make one that looks like this?
btw hi everyone i am...new
Welcome to the forum. Try this code. I've set up the table layout like your picture, but what makes the border is the attributes on the table tag... <TABLE border=1 bordercolor=red> <TR> <TD> </TD> <TD rowspan=2> </TD> </TR> <TR> <TD> </TD> </TR> </TABLE> code:
<TABLE border=1 bordercolor=red> <TR> <TD> </TD> <TD rowspan=2> </TD> </TR> <TR> <TD> </TD> </TR> </TABLE>
[ March 25, 2002: Message edited by: Kahlan ]
|
|
|
|
|
Logged
|
|
|
|
|