Crazy Pellas  
Home Register FAQ Search Today's Posts Mark Forums Read
Go Back   Crazy Pellas > General > General
Reload this Page

CSS Help please


Crazy Pellas Forums
Sign up for an account!

Closed Thread
 
LinkBack Thread Tools
CSS Help please
Old
  (#1)
 
Kastro187420's Avatar
Kastro187420 is Offline
Registered User
Kastro187420 is on a distinguished road
 
Posts: 38
Talent Points: 0
Total Thanks Received: 0
Join Date: 19 Sep 2005
Default CSS Help please - 24-10-2005, 09:26 AM

Ok, if you someone knows HTML or CSS and can help me out, that would be great:

I need this changed:

#navstrip { font-weight:italic; padding:6px 0px 6px 0px; }

So that the NavStrip links will have the color of #00FFFF instead of being black.But I have no idea what to change in order to make it that.I've tried manually entering the color codes, but thats not doing it.

So can someone help me out here, thanks.
  
Re: CSS Help please
Old
  (#2)
 
Crazy Pellas's Avatar
Crazy Pellas is Offline
High on Life
Crazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond repute
  Send a message via AIM to Crazy Pellas Send a message via MSN to Crazy Pellas Send a message via Skype™ to Crazy Pellas  
 
Posts: 16,231
Talent Points: 5
Total Thanks Received: 10,228
Join Date: 25 Nov 2004
Location: Glasgow, Scotland
Age: 20
Default Re: CSS Help please - 24-10-2005, 10:49 AM

just add color: #00FFFF; between the { } so its like this

#navstrip
{
color: #00FFFF;
font-weight:italic; padding:6px 0px 6px 0px;
}

that should work
  
Re: CSS Help please
Old
  (#3)
 
Crazy Pellas's Avatar
Crazy Pellas is Offline
High on Life
Crazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond repute
  Send a message via AIM to Crazy Pellas Send a message via MSN to Crazy Pellas Send a message via Skype™ to Crazy Pellas  
 
Posts: 16,231
Talent Points: 5
Total Thanks Received: 10,228
Join Date: 25 Nov 2004
Location: Glasgow, Scotland
Age: 20
Default Re: CSS Help please - 24-10-2005, 12:19 PM

nvr read it correct first time,

for link you need to put

#navstrip a:link, #navstrip a:visited, #navstrip a:hover, #navstrip a:active
{
color: #00FFFF;
font-weight:italic; padding:6px 0px 6px 0px;
text-decoration: none;
}

or to underline the link when the mouse is put over you'd put

#navstrip a:link, #navstrip a:visited, #navstrip a:active
{
color: #00FFFF;
font-weight:italic; padding:6px 0px 6px 0px;
text-decoration: none;
}

#navstrip a:hover
{
color: #00FFFF;
font-weight:italic; padding:6px 0px 6px 0px;
text-decoration: underline;
}

or to hard code it, you'd put

HTML Code:
<a style="color: #00FFFF" href="http://">Text</a> 
  
Re: CSS Help please
Old
  (#4)
 
Bastard Man's Avatar
Bastard Man is Offline
Basket Case
Bastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond repute
 
Posts: 5,867
Talent Points: 13
Total Thanks Received: 6,182
Join Date: 29 Nov 2004
Age: 24
Default Re: CSS Help please - 24-10-2005, 02:09 PM

Thats what i was telling him lol
  
Re: CSS Help please
Old
  (#5)
 
Crazy Pellas's Avatar
Crazy Pellas is Offline
High on Life
Crazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond repute
  Send a message via AIM to Crazy Pellas Send a message via MSN to Crazy Pellas Send a message via Skype™ to Crazy Pellas  
 
Posts: 16,231
Talent Points: 5
Total Thanks Received: 10,228
Join Date: 25 Nov 2004
Location: Glasgow, Scotland
Age: 20
Default Re: CSS Help please - 24-10-2005, 04:48 PM

lol
  
Re: CSS Help please
Old
  (#6)
 
Kastro187420's Avatar
Kastro187420 is Offline
Registered User
Kastro187420 is on a distinguished road
 
Posts: 38
Talent Points: 0
Total Thanks Received: 0
Join Date: 19 Sep 2005
Default Re: CSS Help please - 26-10-2005, 04:42 AM

Quote:
Originally Posted by BBK
Thats what i was telling him lol
lol that might be beliveable if you actually knew what CSS was...

Oh and thanks CrazyPellas, that fixed the problem.
  
Re: CSS Help please
Old
  (#7)
 
Bastard Man's Avatar
Bastard Man is Offline
Basket Case
Bastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond repute
 
Posts: 5,867
Talent Points: 13
Total Thanks Received: 6,182
Join Date: 29 Nov 2004
Age: 24
Default Re: CSS Help please - 26-10-2005, 06:56 AM

Quote:
lol that might be beliveable if you actually knew what CSS was...
I know exactly what it is, its Cascading Style Sheets lol
  
Re: CSS Help please
Old
  (#8)
 
Crazy Pellas's Avatar
Crazy Pellas is Offline
High on Life
Crazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond reputeCrazy Pellas has a reputation beyond repute
  Send a message via AIM to Crazy Pellas Send a message via MSN to Crazy Pellas Send a message via Skype™ to Crazy Pellas  
 
Posts: 16,231
Talent Points: 5
Total Thanks Received: 10,228
Join Date: 25 Nov 2004
Location: Glasgow, Scotland
Age: 20
Default Re: CSS Help please - 26-10-2005, 12:28 PM

Quote:
Originally Posted by Kastro187420

Oh and thanks CrazyPellas, that fixed the problem.
np

Quote:
Originally Posted by BBK
I know exactly what it is, its Control System Script
lol nope, its Cascading Style Sheets
  
Re: CSS Help please
Old
  (#9)
 
Bastard Man's Avatar
Bastard Man is Offline
Basket Case
Bastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond reputeBastard Man has a reputation beyond repute
 
Posts: 5,867
Talent Points: 13
Total Thanks Received: 6,182
Join Date: 29 Nov 2004
Age: 24
Default Re: CSS Help please - 26-10-2005, 07:27 PM

thats what i put, take a look lol
  
Re: CSS Help please
Old
  (#10)
 
GRimEYGoD's Avatar
GRimEYGoD is Offline
Lost in Time.
GRimEYGoD is a name known to allGRimEYGoD is a name known to allGRimEYGoD is a name known to allGRimEYGoD is a name known to allGRimEYGoD is a name known to allGRimEYGoD is a name known to all
  Send a message via AIM to GRimEYGoD  
 
Posts: 1,635
Talent Points: 5
Total Thanks Received: 124
Join Date: 26 Nov 2004
Location: 804....VA
Age: 26
Default Re: CSS Help please - 28-10-2005, 04:16 AM

LOL thats was some funny shit... I think that CP got you on that one... LOL...
  
Closed Thread

Bookmarks

Thread Tools

Forum Jump



Recommended: MusiciansFriend | GuitarCenter | PSSL | zZounds | Amazon | MixUnit


Powered by vBulletin®
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO ©2008, Crawlability, Inc.
vBulletin Skin developed by: vBStyles.com | Customized by: Crazy Pellas

All content is protected by the copyright of their respective owners,
CrazyPellas™ name and similar are trademarks of CrazyPellas.net