.page-watch-options

Description »

This class surrounds text detailing the options for watching a Wikidot page found at the bottom of every page by default directly above the edit options or directly below the page edition details.

Containers »

Outline
Image Unavailable
Click to view in closer detail!

Details »

This class is the container for the page watch options, where people can watch or unwatch a page, category or the whole site. On this site, it looks like the below:

Start watching: site css.wikidot.com | category _default | this page [?]

.page-watch-options is a class belonging to a <div> block. Therefore, as the demonstration to the right indicates, it stretches across the entire screen.

Examples »

If you have used the Watchers module on your site, you may want to hide these links from appearing at the bottom of your pages. You can therefore use this class selector to hide this on every page. The code below does this:

.page-watch-options {    display: none; }

If you look on this particular page, you will find that you cannot find these options. This is because this page uses the above code to hide it.

Try It on the CSS Zone Sandbox!

Base CSS »

.page-watch-options{
    font-size: 95%;
    text-align: right;
}
 
.page-watch-options a{
    text-decoration: none;
}
 
.page-watch-options a:hover{
    text-decoration: underline;
}

Not defined in Base CSS.

_p
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License