Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby > Web Usability
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Web Usability Discuss and review websites for better usability.

Sponsored Reviews   High Bandwidth Dedicated Servers   V7N Directory

Reply
 
LinkBack Thread Tools Display Modes
Old 06-27-2004, 03:04 PM   #1 (permalink)
SN3
Contributing Member
 
SN3's Avatar
 
Join Date: 10-13-03
Location: Work, USA
Posts: 5,382
iTrader: 0 / 0%
Latest Blog:
None

SN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really nice
Send a message via AIM to SN3 Send a message via Yahoo to SN3
Safari Browser and CSS

Does safari accept CSS? My cousin sent me a screenshot of my site, and all of the css was disregared.
SN3 is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 06-27-2004, 03:15 PM   #2 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
Your css is all screwed up.

For one, you can't put your link stuff inside of other brackets.

Brackets inside of brackets doesn't work in CSS.

CSS Validator: http://jigsaw.w3.org/css-validator/
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2004, 03:27 PM   #3 (permalink)
SN3
Contributing Member
 
SN3's Avatar
 
Join Date: 10-13-03
Location: Work, USA
Posts: 5,382
iTrader: 0 / 0%
Latest Blog:
None

SN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really nice
Send a message via AIM to SN3 Send a message via Yahoo to SN3
But it won't fix the CSS? Do you mean I can't have somehting like this:

A:hover { text-decoration:underline; }

because its in

{
other text stuff
A:hover { text-decoration:underline; }
}

?
SN3 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2004, 03:34 PM   #4 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
The link tags cannot be inside the other brackets.

But you can assign classes to your links like this:

[code:1:49f2776c06]
.something {stuff here: blah;}
a.something {color: blah;}
a:hover.something {text-decoration: underline;}

.somethingelse {stuff here: blah;}
a.something else {color: blah;}
a:hover.somethingelse {text-decoration: underline;}[/code:1:49f2776c06]
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2004, 03:36 PM   #5 (permalink)
SN3
Contributing Member
 
SN3's Avatar
 
Join Date: 10-13-03
Location: Work, USA
Posts: 5,382
iTrader: 0 / 0%
Latest Blog:
None

SN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really nice
Send a message via AIM to SN3 Send a message via Yahoo to SN3
Ok, so now I have to re-make all of my CSS. I will finally learn I need to use a stylesheet. :bah:
SN3 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2004, 03:48 PM   #6 (permalink)
SN3
Contributing Member
 
SN3's Avatar
 
Join Date: 10-13-03
Location: Work, USA
Posts: 5,382
iTrader: 0 / 0%
Latest Blog:
None

SN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really nice
Send a message via AIM to SN3 Send a message via Yahoo to SN3
So it would be this:

[code:1:e9f9922df6]
.tpnav {font-family: Tahoma; font-size: 11px; text-decoration: none; color: #A2A2A2;}
a.tpnav { text-decoration:none; }
a.hover.tpnav { text-decoration:underline; }[/code:1:e9f9922df6]
SN3 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2004, 03:48 PM   #7 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
I would like to point out that you don't need to make link classes for every regular class you are using.

If you add your link styles one time in the stylesheet, they will be applied to all links.

Then if you have links that you want to do special stuff to, give those a class. But don't give all links a class.

Just put this once in your stylesheet:

[code:1:9a44e260ec]a {text-decoration: none; color: #color;}
a:hover {text-decoration: underline;} [/code:1:9a44e260ec]
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2004, 03:49 PM   #8 (permalink)
SN3
Contributing Member
 
SN3's Avatar
 
Join Date: 10-13-03
Location: Work, USA
Posts: 5,382
iTrader: 0 / 0%
Latest Blog:
None

SN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really nice
Send a message via AIM to SN3 Send a message via Yahoo to SN3
Ok, thanks.
SN3 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2004, 04:40 PM   #9 (permalink)
SN3
Contributing Member
 
SN3's Avatar
 
Join Date: 10-13-03
Location: Work, USA
Posts: 5,382
iTrader: 0 / 0%
Latest Blog:
None

SN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really niceSN3 is just really nice
Send a message via AIM to SN3 Send a message via Yahoo to SN3
Thanks soooo much Jazzee, it's now working in Safari.
SN3 is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-28-2004, 03:55 AM   #10 (permalink)
Inactive
 
Fusion's Avatar
 
Join Date: 03-08-04
Posts: 2,644
iTrader: 0 / 0%
Latest Blog:
None

Fusion is a jewel in the roughFusion is a jewel in the roughFusion is a jewel in the roughFusion is a jewel in the roughFusion is a jewel in the roughFusion is a jewel in the roughFusion is a jewel in the rough
Send a message via MSN to Fusion Send a message via Yahoo to Fusion
lol
Fusion is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Web Usability

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Safari for Windows CompuTalk Computers & Internet 6 04-25-2008 11:50 AM
Safari 3 Beta fuser00 Computers & Internet 0 09-07-2007 06:56 PM
CSS with Safari vs. IE? Can anyone help - Dewpt Web Design Lobby 2 03-22-2007 12:18 PM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 04:57 PM.
© Copyright 2008 V7 Inc