Results 1 to 5 of 5

Thread: Im sorry what am I doing wrong with my linking
      
   

  1. #1
    leebring's Avatar
    leebring is offline First Lieutenant
    Join Date
    Sep 2006
    Location
    Gainesville, Ga
    Posts
    179

    Cool Im sorry what am I doing wrong with my linking

    I thought I was doing my linking right after talking to Beth, But its
    still is turning blue. This is what im doing, please tell me what im doing wrong.

    I bring up page properties I went to background, l then changed the text to black, I changed the link to black I even change the visited link to black just to make sure. I can type in black with no problem. When I highlight my text to be link to another part of my site i type in the Url then It changes to blue still.
    I tryed everything. This is what Im trying to do. I want my text in black then when someone click on one of my link it will turn blue. Like I said its blue already when I link something and wont stay black. Am I making any sense.

    Thanks
    David

  2. #2
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: Im sorry what am I doing wrong with my linking

    I had a spot on my website that I created a list and did not want the link to be underlined or turn colors. I found this on the web and it worked.

    On the page that you want links such as described above- open the Page Html. Click on the Between the head tag. In the white area paste the following code;


    <style type="text/css">
    <!--
    a:link {
    color: #000000;
    text-decoration: none;
    }
    a:visited {
    text-decoration: none;
    color: #000000;
    }
    a:hover {
    text-decoration: none;
    color: #000000;
    }
    a:active {
    text-decoration: none;
    color: #000000;
    }
    -->
    Keep in mind- this defines the hyperlinks for the whole page. All hyper links on that page will act accordingly.

    Hope that helps,

    Andy
    PHP- is a blast!

  3. #3
    leebring's Avatar
    leebring is offline First Lieutenant
    Join Date
    Sep 2006
    Location
    Gainesville, Ga
    Posts
    179

    Default Re: Im sorry what am I doing wrong with my linking

    OOooooThanks for your help All
    Ill use the menu bar it seems to work for what I need it for

    David

  4. #4
    Bethers's Avatar
    Bethers is offline Major General & Forum Moderator
    Join Date
    Feb 2006
    Posts
    5,232

    Default Re: Im sorry what am I doing wrong with my linking

    David, I told you this before and don't think you understood it - if you are looking at the link on the BV page, not on the web - links are ALWAYS blue there - but published they will be what you have named them to be.

  5. #5
    leebring's Avatar
    leebring is offline First Lieutenant
    Join Date
    Sep 2006
    Location
    Gainesville, Ga
    Posts
    179

    Default Re: Im sorry what am I doing wrong with my linking

    Your right Beth, I did'nt understand what you were saying, but now I do.
    After I change the color I needed then publish my page they are the colors I wanted. Thanks for your help also Andy.
    Thanks for your help.
    David

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49