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 !
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.
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 !
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):
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 !
you just have to make a active style...then change the color to whatever you want... http://www.echoecho.com/csslinks.htm
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 !