Moving across the site pages

Discussion in 'HTML & Website Design' started by igordr, Sep 6, 2009.

  1. #1
    Hi !

    I have on my site, list of pages (ex. 1, 2, 3, 4 ,5 ,6 ,7, 8, 9, 10.....50 ,51.... ) and this numbers are same color, when visitor comes, he will probably lose him self, because he don't know in which page he's looking... (they are same color) How i can make it bold, or changle color ?

    Here is what i talking about:

    http://www.onlinefilmovi.info/filmovi.php

    All the best !
     
    igordr, Sep 6, 2009 IP
  2. BlackElf

    BlackElf Active Member

    Messages:
    187
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    53
    #2
    There few options for you :
    1. you can use the tags in the BODY tag :
    <body link="blue" alink="green" vlink="violet">
    HTML:
    All the links will be blue, Active Links in green and the one you were looking for :
    vlink="color"
    HTML:
    For the visited link color.

    A good alternative is using CSS to color specific links with the chosen colors.

    2. you can write a nice code in php that tracks the pages that the user have visited so far and just mark them in different colors.
     
    BlackElf, Sep 6, 2009 IP
  3. igordr

    igordr Greenhorn

    Messages:
    62
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #3
    Hi man !

    Thanks, but i think, you are not understood me...

    I want, that, the link of page, where visitor is, be diffrent color then other numbers of pages... ex. Visitor is now on 15. page, then number 15 is red, later, visitor will visit 20. page, then number 20 will be red, of course numb. 15 will be normal link color... :)

    All the best !
     
    Last edited: Sep 7, 2009
    igordr, Sep 7, 2009 IP
  4. BlackElf

    BlackElf Active Member

    Messages:
    187
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    53
    #4
    yes there is - will be back in a few with the input
     
    BlackElf, Sep 7, 2009 IP
  5. BlackElf

    BlackElf Active Member

    Messages:
    187
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    53
    #5
    you can try this :
    A:visited {
    	COLOR: #9999FF; TEXT-DECORATION: none
    }
    
    Code (markup):

    Or for a specific class ("categorylink" in this example) :

    A.categorylink:visited {
    	COLOR: #ffffff; TEXT-DECORATION: underline
    }
    
    Code (markup):
     
    BlackElf, Sep 7, 2009 IP
  6. igordr

    igordr Greenhorn

    Messages:
    62
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #6
    With a:visited , link, where visitor was, will be alway diffrent color then else of list numbers... But i need where visitor is to be diffrent colors,later, when he leave this page numb, numb. is regular color..

    For example, you can see this...

    http://bestwebgallery.com/

    Page number, where i am, is marked as white numb...

    Again, thanks ! :)
     
    igordr, Sep 7, 2009 IP
  7. HighRankingSEO

    HighRankingSEO Well-Known Member

    Messages:
    423
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    125
    #7
    HighRankingSEO, Sep 7, 2009 IP
  8. igordr

    igordr Greenhorn

    Messages:
    62
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #8
    Here is my css for links.. example..

    a.navlinks:link
    {
    	color:#3F6;
    	text-decoration:none;
    }
    a.navlinks:visited
    {
    	color:#09F;
    	text-decoration:none;
    }
    a.navlinks:hover
    {
    	color:#333;
    	text-decoration:none;
    }
    a.navlinks:active
    {
    	color:#0F0;
    	text-decoration:underline;
    }
    Code (markup):
    That is for

    <a href="filmovi.php" class="navlinks">1</a>
    <a href="filmovistr2.php" class="navlinks">2</a>
    <a href="filmovistr3.php" class="navlinks">3</a>

    ...

    I seted active to light green... While i am on some of pages in list, link(number) is normal (not light green) ...

    Here is another example for what i am looking for....

    http://www.webcreme.com

    See page links - Pages (355) : « 1 2 [3] 4 5 » ... Last »

    If i am on page three, i will get [] around three number... If i am on 50. page, i will get [] around 50 number... I need same thing, just to be color, or underline...

    I hope, you are understood me :) Thanks again !
     
    igordr, Sep 8, 2009 IP
  9. igordr

    igordr Greenhorn

    Messages:
    62
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #9
    Help please ?
     
    igordr, Sep 10, 2009 IP