Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Diseñando una mejor Experiencia Ecommerce en Re...

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.

Diseñando una mejor Experiencia Ecommerce en Responsive

Ponencia para WordPress Marbella. Mayo de 2014.
Diseño por Verónica Valenzuela.
Buenas prácticas a la hora de trabajar con Diseño Web Responsive orientado al comercio electrónico bajo WordPress. Especial atención al Mobile-FIrst, gestión de imágenes fluidas, uso de sliders y correcta ubicación y gestión de Menús.

Avatar for SiloCreativo

SiloCreativo

May 30, 2014
Tweet

More Decks by SiloCreativo

Other Decks in Design

Transcript

  1. 1

  2. .ie img { width: inherit; /* Make images fill their

    parent's space. Solves IE8. */ max-width: 100%; /* Add !important if needed. */ height: auto; /* Add !important if needed. */ }
  3. the_post_thumbnail(); the_post_thumbnail('thumbnail'); // Thumbnail (default 150px x 150px max) the_post_thumbnail('medium');

    // Medium resolution (default 300px x 300px max) the_post_thumbnail('large'); // Large resolution (default 640px x 640px max) the_post_thumbnail('full'); // Full resolution (original size uploaded) the_post_thumbnail( array(100,100) );
  4. add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 720, 500, true ); // Add

    Thumbnail sizes add_image_size( 'silocreativo-thumb-380', 380, 300, true ); add_image_size( 'silocreativo-thumb-380', 380, 300, array( 'left', 'top' ) ); NEW in WP 3.9!
  5. 3

  6. register_nav_menus( array( 'primary' => __( 'Navigation Menu', 'silocreativo' ), 'social'

    => __( 'Social Links Menu', 'silocreativo' ), ) ); #menu-social li a[href*="twitter.com"]::before { content: "\f099"; }