Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS PHP navigation :active

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #32194
    Attila Hajzer
    Participant

    This is my Index page.


    if(isset($_GET["page"]) && $_GET["page"] != "home"){
    if(file_exists($_GET["page"].".php")){
    include($_GET["page"].".php");
    }else{
    include("PageNotFound.php");
    }
    }else{
    include("home.php");
    }
    ?>

    This is my navigation page

    
    
    ";
    ?>

    i dont know how i would make the :active property look.

    here’s the site right now.

    http://attilahajzer.host-ed.net/

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.