Web Design Web Design Forum
Registration is free! Here you can view your subscribed threads, work with private messages and edit your profile and preferences Calendar Find other members Frequently Asked Questions Search
Home Web Design

Convenient web based access to our favorite web design Usenet groups

web design reviews

This is Interesting: Free Magazines for Graphics designers and webmasters  





Pages (4): [1] 2 3 4 »   Last Thread  Next Thread
Author
Thread Post New Thread   

I don't understand CSS
 

David Preston




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
I'm trying to make a web page that has links (<a> tags) formatted in a
couple of different ways on the same page. I know CSS is the way to do
it, but I don't begin to understand how.

Please, would someone direct this thicko to a tutorial that explains the
way to do it in *very* simple terms...

--
David Preston
Now playing: The Beat - Tears Of A Clown


Post Follow-Up to this message ]
Re: I don't understand CSS
 

saz




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
In article <d6lhut$ml0$1@newsg4.svr.pol.co.uk>,
dave@dbpreston.wanadoo.co.uk says...
> I'm trying to make a web page that has links (<a> tags) formatted in a
> couple of different ways on the same page. I know CSS is the way to do
> it, but I don't begin to understand how.
>
> Please, would someone direct this thicko to a tutorial that explains the
>   way to do it in *very* simple terms...
>
>

Go here:

http://www.w3schools.com/css/default.asp


Post Follow-Up to this message ]
Re: I don't understand CSS
 

Chris Hope




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
David Preston wrote:

> I'm trying to make a web page that has links (<a> tags) formatted in a
> couple of different ways on the same page. I know CSS is the way to do
> it, but I don't begin to understand how.
>
> Please, would someone direct this thicko to a tutorial that explains
> the
>   way to do it in *very* simple terms...

This should head you in the right direction
http://www.google.com/search?q=css+tutorial

--
Chris Hope | www.electrictoolbox.com | www.linuxcdmall.com


Post Follow-Up to this message ]
Re: I don't understand CSS
 

Ignoramus32374




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
On Fri, 20 May 2005 15:48:48 -0500, saz <saz1958@nospammersexcite.com> wrote:
> In article <d6lhut$ml0$1@newsg4.svr.pol.co.uk>,
> dave@dbpreston.wanadoo.co.uk says... 
>
> Go here:
>
> http://www.w3schools.com/css/default.asp

A beautiful link. I was  desperate for something like this.

i
--


Post Follow-Up to this message ]
Re: I don't understand CSS
 

Norman L. DeForest




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
On Fri, 20 May 2005, David Preston wrote:

> I'm trying to make a web page that has links (<a> tags) formatted in a
> couple of different ways on the same page. I know CSS is the way to do
> it, but I don't begin to understand how.
>
> Please, would someone direct this thicko to a tutorial that explains the
>   way to do it in *very* simple terms...

I'm just learning CSS myself (at least, trying to) and have found it very
convenient to have CSS and HTML references available for off-line viewing.

Besides on-line references at:
http://www.htmlhelp.org/index.htm
the "Web Design Group's Help file Distribution Page",
http://www.htmlhelp.org/distribution/
has links for downloading the references for off-line access in a number
of formats (including Windows Help file format).  The zipped HTML versions
of their references are:

"HTML 3.2 Reference - Zipped HTML"
http://www.htmlhelp.org/distribution/wilbur.zip

"HTML 4.0 Reference - Zipped HTML":
http://www.htmlhelp.org/distribution/wdghtml40.zip

"CSS Guide - Zipped HTML":
http://www.htmlhelp.org/distribution/wdgcss.zip

You may find the latter especially convenient for your current endeavour.

--
">> consider moving away from Front Page...."
">To what? Any suggestions?"
"Naked bungee-jumping. It's less humiliating <g>"
-- Matt Probert in alt.www.webmaster, March 20, 2005



Post Follow-Up to this message ]
Re: I don't understand CSS
 

David Preston




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
Norman L. DeForest wrote:
> Besides on-line references at:
>     http://www.htmlhelp.org/index.htm
> the "Web Design Group's Help file Distribution Page",
>     http://www.htmlhelp.org/distribution/
> has links for downloading the references for off-line access in a number
> of formats (including Windows Help file format).  The zipped HTML versions
> of their references are:
>
> "HTML 3.2 Reference - Zipped HTML"
>     http://www.htmlhelp.org/distribution/wilbur.zip
>
> "HTML 4.0 Reference - Zipped HTML":
>     http://www.htmlhelp.org/distribution/wdghtml40.zip
>
> "CSS Guide - Zipped HTML":
>     http://www.htmlhelp.org/distribution/wdgcss.zip
>
> You may find the latter especially convenient for your current endeavour.
>

That's the sort of thing I was looking for, thank you.

Now a follow up question that proves just how lacking my knowledge is in
this area -

A stylesheet has just this entry-
nav.a:link {  color: #FFFF66}

My understanding is that any link inside, say, a table with a
class="nav" should be yellow (#FFFF66)

But it just doesn't work - the link is the standard blue.

I'm obviously doing something wrong, but I don't know what.

--
David Preston
Listening to the sound of silence


Post Follow-Up to this message ]
Re: I don't understand CSS
 

William Tasso




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
Forging a path through the Usenet jungle, armed only with a rusty Mozilla
Thunderbird 1.0 (Windows/20041206), David Preston stumbled into
alt.www.webmaster and said:

> ...
> A stylesheet has just this entry-
> nav.a:link {  color: #FFFF66}
>
> My understanding is that any link inside, say, a table with a
> class="nav" should be yellow (#FFFF66)

.nav a:link {color:#ffff66;}

--
Whatever you do - do something.


Post Follow-Up to this message ]
Re: I don't understand CSS
 

saz




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
In article <d6llt8$pqv$1@newsg4.svr.pol.co.uk>,
dave@dbpreston.wanadoo.co.uk says...
> Norman L. DeForest wrote: 
>
> That's the sort of thing I was looking for, thank you.
>
> Now a follow up question that proves just how lacking my knowledge is in
> this area -
>
> A stylesheet has just this entry-
> nav.a:link {  color: #FFFF66}
>
> My understanding is that any link inside, say, a table with a
> class="nav" should be yellow (#FFFF66)
>
> But it just doesn't work - the link is the standard blue.
>
> I'm obviously doing something wrong, but I don't know what.
>
>
The correct way to write that is:

nav.a:link {  color: #ffff66; }

You left out the semi-colon, and you should also use lower-case for all
letters (the semi-colon was the real problem).


Post Follow-Up to this message ]
Re: I don't understand CSS
 

saz




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
In article <MPG.1cf81a247cd50dc098977c@news.comcast.giganews.com>,
saz1958@nospammersexcite.com says...
> In article <d6llt8$pqv$1@newsg4.svr.pol.co.uk>,
> dave@dbpreston.wanadoo.co.uk says... 
> The correct way to write that is:
>
> nav.a:link {  color: #ffff66; }
>
> You left out the semi-colon, and you should also use lower-case for all
> letters (the semi-colon was the real problem).
>
It should also have a dot in front of the nav.  Sorry.

.nav.a:link {  color: #FFFF66}


Post Follow-Up to this message ]
Re: I don't understand CSS
 

William Tasso




quote this post edit post

IP Loged report this post

Old Post  05-21-05 - 12:39 AM  
Forging a path through the Usenet jungle, armed only with a rusty
MicroPlanet Gravity v2.50, saz stumbled into alt.www.webmaster and said:
 
> It should also have a dot in front of the nav.  Sorry.
>
> .nav.a:link {  color: #FFFF66}

Keep going - you'll get there :)

btw, semi-colon is optional on the last entry and the characters in the
colour code are case insensitive.

--
Whatever you do - do something.


Post Follow-Up to this message ]
Sponsored Links
 





All times are GMT. The time now is 02:12 PM. Post New Thread   
Pages (4): [1] 2 3 4 »   Previous Last Thread   Next Thread next
Webmaster forum archive | Show Printable Version | Email this Page | Subscribe to this Thread

Popular forums

Adobe Photoshop forum Macromedia Flash Web Site Design
Dreamweaver FrontPage forum
JavaScript Forum XML forum
Style Sheets VRML
Forum Jump:
Rate This Thread:

 

XML RSS Feed web design latest articles Syndicate our forum via XML or simple JavaScript

Web Design archive  Database administration help  


Top Home  -  Register  -  Control Panel   -  Memberlist  -  Calendar  -  Faq  -  Search Top