For cross browser compatibility, seems to be needed two lines for for favicon:
<link rel="shortcut icon" href="http://www.mysite.com/favicon.ico" />
<link rel="icon" href="http://www.mysite.com/favicon.ico" type="image/ico" />
For cross browser compatibility, seems to be needed two lines for for favicon:
<link rel="shortcut icon" href="http://www.mysite.com/favicon.ico" />
<link rel="icon" href="http://www.mysite.com/favicon.ico" type="image/ico" />
@mrrpringle said in Footer & Transparent Background :-):
use:
background: none !important;
In CSS, the !important means that “this is important”, ignore all the subsequent rules, and apply !important rule and the !important keyword must be placed at the end of the line, immediately before the semicolon. Defining a rule with the !important 'attribute' (?) discards the normal concerns as regards the 'later' rule overriding the 'earlier' ones.
In CSS, there is no property such as transparancy. But, you can achieve transparancy by inserting a pseudo element with regular opacity the exact size of the element behind it. The CSS3 property for transparent is opacity and it is a part of the W3C CSS3 recommendation.
div
{
opacity: 0.6;
}
The opacity-level describes the transparency-level, it ranges from 0.0 to 1.0. The level 0.0 is completely transparent, 0.5 is 50% see-through and level 1.0 is not transparent. Opacity has a default initial value of 1 (100% opaque).