רשומות

מציג פוסטים מתאריך אוקטובר, 2010

שינוי ה-CSS של לינק בתפריט בהתאם לעמוד בו נמצאים.

חיפשתי את זה שנה! והנה זה נמצא לבסוף באתר המעולה הזה: http://www.wickham43.net/highlighthome.php Wickham's HTML & CSS tutorial Highlighted text link for current page 1 HOME About Us Services The links above show the simplest form of identifying which page you are on. Every page needs a different link to have the class="current". It does have the disadvantage that if you extend your website by adding extra pages or if you want to edit a link url you have to edit every page and you might have hundreds of them. The other methods allow the li tags with the links to be put in a separate "include" file where they will not change depending on which page they refer to and you will only have to edit one file to add extra links or edit urls. The code for the styles in the head section style tags is:- a.current:link, a.current:visited { color: black; cursor: default; text-transform: uppercase; font-weight: bold; background-color: lime; } /* unvisited and visited links*...