admin
Administrator
     
Offline
Posts: 211
|
 |
« on: May 07, 2020, 07:10: PM » |
|
to change a link on a specific page or area or a website use the CSS ID tase #
#listgrouplink { color: #00FF00; font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif; } /* CSS link color Green */
#listgrouplink:hover { color: #29DDE0; } /* CSS link hover (green) */
then use in the link href tag like this
/* CSS link colors wit ID tag # <a id="listgrouplink" href="_new_view_group.php?ag=<?php echo $_GET['ag']; ?>"><?php echo $row_rsgroup['group_name']; ?> [/url] */
|