Adding a disclaimer to your blog
Tuesday, August 22, 2006 4:40:00 AM
Some of you have asked how I added a disclaimer to my blog. It's basically a simple CSS addition.
By going to My Account -> Change design -> custom stylesheet adding the following CSS in the form presented and making sure Use my custom style sheet together with the current theme is selected you can quickly add a nice and shiny disclaimer showing on top of all your blog. Nice and easy
Using the :before selector on the main element lets you add a fake element right before the main content starts. The content: attribute lets you even fill out the text.
So, go ahead, and feel free to show me how you use it!
#mainwrap:before {
content: "The views expressed in this blog are my own and do not necessarily reflect the views of any former, current or future employers or employees of mine.";
color: black;
background-color: #ffff99;
font-style: italic;
border: solid #aaaa77 1px;
padding: 10px;
white-space: normal;
margin-bottom: 15px;
margin-right: 210px;
float: none;
width: auto;
display: block;
}















Nicolas Mendozanicomen # Tuesday, August 22, 2006 6:18:25 AM
Just another excuse to upgrade to Firefox or Opera
Ole Kasperolekasper # Tuesday, August 22, 2006 7:00:54 AM
Vetle Roeimvetler # Tuesday, August 22, 2006 8:02:12 AM
Nicolas Mendozanicomen # Tuesday, August 22, 2006 1:29:51 PM
Henrik Falckhefa # Monday, August 28, 2006 7:12:08 AM
Fredrik Anderssonfred # Saturday, September 9, 2006 8:03:25 PM
- That's easy. You can use .blogfront #mainwrap:before
There's class names available for almost everything on my opera.
Knut Remi "DrLaunch" Løvlidrlaunch # Friday, December 15, 2006 8:22:48 AM
Nicolas Mendozanicomen # Tuesday, May 15, 2007 8:37:17 AM
KimberlySqueakeyCat # Friday, July 27, 2007 6:03:13 PM
Nicolas Mendozanicomen # Saturday, July 28, 2007 11:44:34 AM
corrected the article too...
KimberlySqueakeyCat # Saturday, July 28, 2007 4:02:47 PM
Nicolas Mendozanicomen # Sunday, July 29, 2007 10:38:50 AM
KimberlySqueakeyCat # Sunday, July 29, 2007 5:22:36 PM
Ryan Octavianusphilry4n # Monday, October 1, 2007 3:17:00 PM
edit : fixed