• can i have a different css file(or same) for the content of the blog so that if i use <h1 heading /h1> i get a different look then the other h1.

    /teddy

Viewing 1 replies (of 1 total)
  • You can specify the following markups.

    <h1 class="post-title">Something</h1>

    and somewhere else

    <h1 class="category-title">Title</h1>

    And in your CSS file


    h1.post-title {
    color: blue;
    }

    h1.category-title {
    color: red;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘how can i…’ is closed to new replies.