BLOG

web design html interactive web designer css3 responsive design front-end javascript SEO friendly design web marketing

02-11-2011

How to display fields using select drop down and jQuery

<script type="text/javascript"> $(document).ready(function(){ $("#Select").change(function(){ if ($(this).val() == "Other" ) { $("#OtherField").show(); } else { $("#OtherField").hide(); } }); }); </script> ..

Read more

27-10-2011

How to Change the Default Text Selection Color with CSS

If you want to change your website's default text highlight color with any color of your choice, you can use the CSS3 declaration " ::selection" , which will replace your browser-level default text highlight color with a color that better suits your design. See the example below with a RED for the background and WHITE for the text. /* Firefox */ ::-moz-selection { background-color: #FF0000; color: #fff; } /* Safari */ ::selection { background-color: ..

Read more

27-10-2011

Free slider with side navigation PSD for web designers

A high quality Photoshop PSD file of a slider with side navigation, easy to edit and customize. Perfect for jQuery 'Coda'-like slider interface. (/freebies/slider-with-navigation.zip) Download the PSD here! (/freebies/slider-with-navigation.zip) ..

Read more

10-10-2011

How to change the message "Shopping cart is empty" across the entire website on Business Catalyst using jQuery

To customize the "Shopping cart is empty" message on the { module_shoppingcartsummary} you will need to add the following script to all your templates. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script type="text/javascript"> $.noConflict(); jQuery(document).ready(function($) { var msg = $('td.cartSummaryItem').html(); if(msg == "Shopping cart is empty." ) {  ..

Read more

06-10-2011

How to Customize Open Graph Tags to Maximize the Value of Your Facebook Like Buttons

Open Graph tags are tags that you add to the of your website to describe the entity your page represents, whether it is a band, restaurant, blog, or something else. This allows Facebook to present a specific image, category, and other information that you can choose about your site when Likes of your content appear in user profiles and news feed. To customize this information just add meta tags to the head of your site: <meta property="og:tag name" content="tag value" />  ..

Read more