• Resolved blakevw

    (@blakevw)


    I want to have different themes for some of my pages. how do I do this?

    My programing skills are probobly a 4 out of 10.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • If it’s a page like About, you can use the is_page() function.

    <?php
    if(is_page('About')){
     echo "<link href='YOUR-STYLE-HERE' type='text/css'>";
    } ?>

    Check the page I linked to above for more conditional tags.

    Thread Starter blakevw

    (@blakevw)

    What file do I past this code into?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘different css for different pages’ is closed to new replies.