Posts

Showing posts from April, 2013

CSS Box Shadow on Left & Right Only

Experiment

Responsive Design View In Mozila

To enable the Responsive Design View: On the Tools menu, choose Web Developer, and then Responsive Design View. On the keyboard, press ctrl-shift-M on Windows or Linux, or cmd-option-M on Macintosh. To disable the Responsive Design View: On the Tools menu, choose Web Developer, and then Responsive Design View. On the keyboard, press Esc. While the Responsive Design View is enabled, you can continue browsing as you normally would in the resized content area.

Remove Currency Selector in Magento

Go to app/design/frontend/default/{Your theme}/template/page/html/header.phtml search for the text $this->getChildHtml('currencyTop') and disable it by commenting. Now refresh your page and check out the result.

Removing Vertical Scroll bar from custom fan page tab

In your App Settings: Canvas width:  Fluid Canvas height:  Fluid Page Tab Width:  Normal   Just Put the following Code after body tag of your html <div id="fb-root"></div> <script>       window.fbAsyncInit = function() {         FB.init({     appId  : 'XXXXXXXXXXXXX',     status : true, // check login status     cookie : true, // enable cookies to allow the server to access the session     xfbml  : true, // parse XFBML     oauth  : true // enable OAuth 2.0         });         //FB.Canvas.setAutoResize(); depreceated             FB.Canvas.setAutoGrow(1000);       };       (function() {     ...