• I am working on home page of a site and want some css to only apply to home page…

    this works but for all pages:

    #branding {padding-bottom: 1px;}

    how do i make this specific for just one page?

    I tried doing:

    .post-88 #branding {padding-bottom: 1px;}

    and it didnt work…

    thanks,

    Gerard

Viewing 2 replies - 1 through 2 (of 2 total)
  • Most themes generate page specific classes in the body tag – so for example you could use:

    body.home #branding { ... }

    what you tried was close, but that’s not a page class or id. Look and see what classes are in the generated HTML for your body tag.

    Thread Starter charismaarts

    (@charismaarts)

    thanks so much that worked…

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