This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php global $woocommerce; ?> | |
<a class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 1130px) { ... } //for dekstop | |
@media (max-device-width: 1024px) and (orientation: landscape) { ... } //for devices | |
@media (max-device-width: 960px){ ... } | |
@media (max-device-width: 800px) and (orientation: landscape){ ... } | |
@media (max-device-width: 480px) and (orientation: portrait) { ... } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// assuming that there is an icons folder in the root directory | |
// favicon - standard html | |
<link rel="shortcut icon" href="icons/favicon.ico"> | |
// Apple Devices Favicons/Icons | |
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png"> | |
<link rel="apple-touch-icon" sizes="57x57" href="icons/apple-touch-icon-57x57.png"> | |
<link rel="apple-touch-icon" sizes="72x72" href="icons/apple-touch-icon-72x72.png"> | |
<link rel="apple-touch-icon" sizes="114x114" href="icons/apple-touch-icon-114x114.png"> | |
<link rel="apple-touch-icon" sizes="144x144" href="icons/apple-touch-icon-144x144.png"> |