Forums

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

Home Forums CSS Print Stylesheet

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #39972
    chanman
    Member

    I’m wanting to make a style sheet for my wordpress site but all I’m wanting is no-styling at all except the h2 to be a certain font-size of my choice. How do I turn off all styling except what i want to be styled?

    #110597
    pmac627
    Participant

    I don’t use WordPress very much, but as far as CSS would go, I would create a style for all elements I wanted reset or blank:

    h1, h3, h4, h5, h6, etc… {
    font-size: 1em;
    font-weight: normal;
    etc…
    }

    #110565
    Kitty Giraudel
    Participant

    At the bottom of the CSS stylesheet of HTML5BoilerPlate, there is print stylesheet. You may want to look at it.

    https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css

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