Difference between revisions of "User:Laisren/esstyle.css"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Laisren
(I guess I could use 'important' instead of [http://www.stuffandnonsense.co.uk/archives/css_specificity_wars.html specificity wars]...)
imported>Laisren
(float-right footer, with enhanced viz.)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* */
/* my style sheet : Footer fix */
#f-poweredbyico  
#f-poweredbyico  
{
{
  visibility:hidden
  visibility:hidden;
}
}
div#globalWrapper div#footer  
div#globalWrapper div#footer  
{
{
  white-space:wrap;
  white-space:wrap;
  text-wrap:unrestricted;
  text-wrap:unrestricted;
  word-wrap:break-word;
  word-wrap:break-word;
  font-size:110%;
  font-size:110%;
  max-width:800px;
  max-width:975px;
}
text-align:right;
div#footer  
}
{
div#footer  
  position:fixed;
{
  left:50px;
  float:right;
  margin-left:0px;
  }
}
 
div#footer img
div#footer img
{
{
  visibility:hidden
display:none;
}
  /* instead of visibility:hidden */
li
}
{
 
div#footer ul#f-list
{
  display: block;
z-index:10;
}
div#footer ul li
{
  display: list-item !important;
  display: list-item !important;
}
}

Latest revision as of 05:06, 9 March 2008

/* my style sheet : Footer fix */
 #f-poweredbyico 
 {
 visibility:hidden;
 }
 div#globalWrapper div#footer 
 {
 white-space:wrap;
 text-wrap:unrestricted;
 word-wrap:break-word;
 font-size:110%;
 max-width:975px;
 text-align:right;
 }
 div#footer 
 {
 float:right;
 }

 div#footer img 
 {
 display:none;
 /* instead of visibility:hidden */
 }

 div#footer ul#f-list
 {
 display: block;
 z-index:10;
 }
 div#footer ul li
 {
 display: list-item !important;
 }