Results 1 to 10 of 10

Thread: Need help with links

Hybrid View

  1. #1

    Default Need help with links

    I'm using Dreamweaver for our webpage, ronpaulradio.com

    The links at the top are white, and I want them to stay that way. However, if I make the links 'white', then all the other links also become white, and the other links are on a white page background.

    Anybody know how I can separate the colors of the links on top to the links in the body of the page? Please get back to me!! Thanks!
    I'm DjLoTi =) Liveontheisland =) I live on an island =) It's my island =)



  • #2

    Default

    Quote Originally Posted by DjLoTi View Post
    I'm using Dreamweaver for our webpage, ronpaulradio.com

    The links at the top are white, and I want them to stay that way. However, if I make the links 'white', then all the other links also become white, and the other links are on a white page background.

    Anybody know how I can separate the colors of the links on top to the links in the body of the page? Please get back to me!! Thanks!
    I have a wed designer working on my site...I will refer him when he/s done with mine...good luck dude

  • #3

    Default

    style sheets.. css code. or you can manually add the color attributes in each link. stick a style tag within each "a href" tag.

    <a style="color: #000000" href="http://www.ronpaul2008.com">black</a>

    <a style="color: #ffffff" href="http://www.ronpaul2008.com">white</a>

  • #4

    Default

    Man I just tried that but it is still not working. >
    I'm DjLoTi =) Liveontheisland =) I live on an island =) It's my island =)

  • #5

    Default

    For a CSS stylesheet, add a line like this before the </head> in each page:

    Code:
    <link rel="stylesheet" href="style.css" type="text/css">
    Then, create a file called style.css and drop the following text into it and edit attributes where appropriate.

    Code:
    body {
    	background-color: #ccc;
    	font-family: sans-serif;
    	font-size: 12px;
    	color: #000;
    	margin: 0px;
    	padding: 0px;
    }
    
    a:link, a:active, a:visited {
    	color: #006699;
    	text-decoration: none;
    }
    a:hover { 
    	color: #0099CC;
    	text-decoration: none;
    }
    "One of the penalties for refusing to participate in politics is that you end up being governed by your inferiors." -Plato

  • #6

    Default

    I just didn't add an a:visited to the stylesheet. I keep forgetting that people are STILL using IE. It's sad, I know...

    I'll fix it later.. in the meantime go download Mozilla Firefox and delete IE

  • #7

    Default

    haha. firefox is awful on my computer. more memory leaks than ie and safari combined

  • #8

    Default

    Quote Originally Posted by McDermit View Post
    haha. firefox is awful on my computer. more memory leaks than ie and safari combined
    http://rakeshweb.com/tweak-for-firef...-leak-problem/

    This will take care of the leakage.
    I just use the trim on minimize bit, but the other part is probably good too, just didn't know about it when I was tweaking mine. When it starts to bloat I minimize it and it resets back down.

    eb
    A.O.B.R - Anyone But Rombama!

    http://www.facebook.com/Razmear

  • #9

    Default

    I am all about Firefox
    I'm DjLoTi =) Liveontheisland =) I live on an island =) It's my island =)

  • #10

    Default

    Damn u guys are smart

  • Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •