Submit Your Article Webforumz RegistrationAnnouncements Contact Webforumz StaffContact
Home Resources Blogs Meet the Team Contact Register
 

Go Back   WebForumz.com > The Code > HTML, XHTML and CSS

Reply
 
LinkBack Thread Tools
Old July 6th, 2006, 03:58 AM   #1
New Member
 

Join Date: Jul 2006
Location: manchester
Age: 21
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 tom_king88 is on a distinguished road
Changing properties of hyperlinks?

Hi ppl,

Okay, I am designing this site for a school project, I have very limited knowledge in HTML but can use dreamweaver quite easily. In dreamweaver to chnage wot happens when you hover, vistit, click and release you use the modify>pageproperties>Links box. This is all great but now i dont want the same colours used for every bit of text on that page and site that has a hyperlink. I am 100% sure there is a way to change whether it "underlines when hovered", changing the colour etc in CSS but in the create new rule of dreamweaver I cannot find any properties that would achieve such an effect.

Could anyone help me here and tell me how to do such a thing in dreamweaver?

Thank you :-)

tom
tom_king88 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old July 6th, 2006, 10:16 AM   #2
Most Reputable Member
SuperMember
 
minute44's Avatar
 

Join Date: Apr 2006
Location: Nottingham UK
Age: 26
Posts: 1,406
Blog Entries: 3
Thanks: 0
Thanked 1 Time in 1 Post
Rep Altering Power: 0 minute44 is just really nice minute44 is just really nice minute44 is just really nice minute44 is just really nice
Re: Changing properties of hyperlinks?

You need to think outside the box here I think mate...

Rather than just saying "I don't know HTML but I can use Dreamweaver" you need to look into learning... that's right that word people around here seem to get so offended about...LEARNING.

Using Dreamweaver is fine but only in CODE VIEW.

Learn XHTML and CSS. I will give you links at the bottom of this post.

You're going to get nowhere fast just using the GUI features of Dreamweaver and even less of a distance just shying away form the prospect of learning.

It's really rewarding when you begin to make progress in web design and I really wish that more people would take the time to see it. It's like a drug!

You can learn XHTML and CSS by looking at thsese sites.There are others too but I'll leave you to find these.

You'll get a much better response out of people on this forum if you appear to be learning by doing research and not just giving up and saying "I don't really know HTML"

Regards

Dan
minute44 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old July 7th, 2006, 08:52 AM   #3
Elite Veteran
 

Join Date: Aug 2005
Location: That Place
Posts: 2,081
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Rep Altering Power: 0 moojoo will become famous soon enough moojoo will become famous soon enough
Re: Changing properties of hyperlinks?

It goes in this order:

a:link {}

a:visited {}

a:hover {}

if not it won't work.
moojoo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old July 7th, 2006, 08:55 AM   #4
Most Reputable Member
SuperMember
 
minute44's Avatar
 

Join Date: Apr 2006
Location: Nottingham UK
Age: 26
Posts: 1,406
Blog Entries: 3
Thanks: 0
Thanked 1 Time in 1 Post
Rep Altering Power: 0 minute44 is just really nice minute44 is just really nice minute44 is just really nice minute44 is just really nice
Re: Changing properties of hyperlinks?

Quote:
Originally Posted by moojoo
It goes in this order:

a:link {}

a:visited {}

a:hover {}

if not it won't work.
Yep, aaah I can't help but remeber the old days when I spent ages pulling my hair out over this....lol
minute44 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old July 7th, 2006, 09:00 AM   #5
Elite Veteran
 

Join Date: Aug 2005
Location: That Place
Posts: 2,081
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Rep Altering Power: 0 moojoo will become famous soon enough moojoo will become famous soon enough
Re: Changing properties of hyperlinks?

lol yeah. Well if it makes you feel better the other day I was working on a project and the CSS wouldn't take. After about an hour I realized I was saving the CSS to the wrong file. Go figure . Oh and the times I actually forget to save the changed files to the server. That is a pure shining moment.

Quote:
Originally Posted by minute44
Yep, aaah I can't help but remeber the old days when I spent ages pulling my hair out over this....lol
moojoo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old July 7th, 2006, 09:02 AM   #6
Elite Veteran
 

Join Date: Aug 2005
Location: That Place
Posts: 2,081
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Rep Altering Power: 0 moojoo will become famous soon enough moojoo will become famous soon enough
Re: Changing properties of hyperlinks?

Also tom a bit of advice. Ignore anything your teacher tells you and immediately start using DW in code view. Start hand coding everything right away and then you won't have to re-learn your methods and ditch bad habits later. DW is a great app if used correctly and can save you lots of time etc.. but like Frontpage etc it has the ability to be downright mean and nasty and do more harm than good.
moojoo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old July 7th, 2006, 03:30 PM   #7
New Member
 

Join Date: Jul 2006
Location: manchester
Age: 21
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 tom_king88 is on a distinguished road
Re: Changing properties of hyperlinks?

thanx alot ppl,

I ended up research a bit about css. I knew the code was:

a:link {}

a:visited {}

a:hover {}

what I wanted to find out was how to make mutipul copies of this code.

If found out, all you had to do was using something like:

a.test:link {}

a.test:visited {}

a.test:hover {}

and where i put the "test" rename that to what you wanted and then apply the style to the text

cheers tom
tom_king88 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old July 7th, 2006, 03:58 PM   #8
Elite Veteran
 

Join Date: Aug 2005
Location: That Place
Posts: 2,081
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Rep Altering Power: 0 moojoo will become famous soon enough moojoo will become famous soon enough
Re: Changing properties of hyperlinks?

Or in a styled list scenario =P

#foo li a {}

#foo li a:visited {} etc etc..
moojoo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

Tags
changing , properties , hyperlinks


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

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

BB 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
[SOLVED] Field validation and changing display properties... c_martini JavaScript 12 September 25th, 2007 07:27 AM
Help with changing colour of hyperlinks sing2trees HTML, XHTML and CSS 10 May 22nd, 2007 02:08 PM
Making some hyperlinks that are none downloadable/right-clickable acrobat HTML, XHTML and CSS 14 May 6th, 2007 02:46 AM
Image hyperlinks AdRock HTML, XHTML and CSS 5 March 28th, 2007 09:46 PM
Using images as hyperlinks AdRock HTML, XHTML and CSS 2 August 30th, 2006 05:03 PM


Search Engine Optimization by vBSEO 3.2.0 RC8