- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
I want to set a uniform width for only the buttons on my home page; buttons on the rest of the site can take on widths based on my general button settings.
I know how to set a uniform width in CSS — but how can I target just those buttons on the home page?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Take your CSS changes and wrap them in style tags, then paste that into the Header Code field for just that page on the pages tab, e.g.
<style>
.wsite-button
{
width: 200px !important;
margin-left: auto !important;
margin-right: auto !important;
}
</style>
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Take your CSS changes and wrap them in style tags, then paste that into the Header Code field for just that page on the pages tab, e.g.
<style>
.wsite-button
{
width: 200px !important;
margin-left: auto !important;
margin-right: auto !important;
}
</style>