try this...css image shadow
walshmagger
Posts
-
Invert blur+darken on mouseover on project thumbnail -
Google Map shortcode@arminunruh said in Google Map shortcode:
well i tried the plugin "https://wordpress.org/plugins/wp-google-maps/"
and it worked for me on lay theme. you probably forgot to set the key for the plugin or you used a wrong key. that plugin needs a google authentication key "Google Maps API Key (required)"Latest Google Maps API requires personal API key for each published website - this is a decision made by Google Maps team.
You have to generate your own API key and use it in the template to get your maps working. More information is available on Google Maps API pages:
-
Full Screen Image Text Overlaycheck this..full screen overlay
-
Footer & Transparent Background :-)@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).
-
Favicon web logoFor 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" />