Rupam Guha
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Themes and Templates
In reply to: Is this even possible Left sidebar and Full page?For this you need to create a different template with out <?php get_sidebar(); ?> and assign it to the specific post/page
Forum: Themes and Templates
In reply to: Unique Page css changesIf you share your URL then I can help you out
Forum: Themes and Templates
In reply to: How to shadow a whole divThe standards way
.shadow { box-shadow: 3px 3px 4px #000; }For Internet Explorer
.shadow { /* For IE 8 */ -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')"; /* For IE 5.5 - 7 */ filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000'); }So combined styles
.shadow { -moz-box-shadow: 3px 3px 4px #000; -webkit-box-shadow: 3px 3px 4px #000; box-shadow: 3px 3px 4px #000; /* For IE 8 */ -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')"; /* For IE 5.5 - 7 */ filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000'); }Forum: Plugins
In reply to: [Google Plus One Button] 1 button W3C validationfor w3c validation for google+, facebook api or twitter plugin you can user javascript document.write covered by xml CDATA.
please find the following link for more details script,
Viewing 4 replies - 1 through 4 (of 4 total)