user3108955
user3108955

Reputation: 1

How do I edit html/css of a specific page?

I'd like to edit the link properties of a specific page so they direct elsewhere than what I specified in the social settings menu, which works globally. So, as it is now the links inherit their properties and theres no way in the cms to change this for every page. Is there a way to add it in the css? I'm not sure how to format it correctly. Here's the hmtl:

The page id: body.page-id-85

The HTML:

<div class="wrapper">
    <div class="thb-social-home">
        <a title="Facebook" href="https://www.facebook.com/">
           <span class="thb-social-icon">2</span>
        </a>
        <a title="YouTube" href="http://www.youtube.com/">
           <span class="thb-social-icon">5</span>
        </a>
    </div>
</div>

Thanks!!

Upvotes: 0

Views: 196

Answers (1)

Mimo
Mimo

Reputation: 6075

You can use body.page-id-85 as base selector for this page:

#body.page-id-85 .wrapper {
  /* wrapper specific rules*/
}

#body.page-id-85 .thb-social-home {
  /* thb-social-home rules */
}

Upvotes: 1

Related Questions