Responsive

Discussion in 'Andrina WordPress Theme' started by raherso, Jun 14, 2013.

Thread Status:
Not open for further replies.
  1. raherso

    raherso New Member

    Joined:
    Apr 3, 2013
    Messages:
    7
    Likes Received:
    0
    Hello, this is my website www. misespejos.es

    ¿? My products page (productos) could be adapted to different devices, movil, tablet. (responsive)

    thanks

    Raherso
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Raherso,

    Edit your productos page and remove code as shown in the image.
    Remove width and height from all images (like: width:188px; height:188px;)

    [​IMG]

    After that
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    table{
    width: 100%;
      border-collapse: collapse;
    }
     
    @media only screen and (max-width: 960px) and (min-width: 767px)
    {
    table td img{
    width:150px!important;
    height:150px!important;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px)
    {
    table td img{
    width:100px!important;
    height:100px!important;
    }
    }
    @media only screen and (max-width: 480px){
    table td img{
    width:100%!important;
    height:100%!important;
    }
    }
     
    table td img{
    width:188px;
    height:188px;
    }
     
  3. raherso

    raherso New Member

    Joined:
    Apr 3, 2013
    Messages:
    7
    Likes Received:
    0
    Thank you for your help.
     
Thread Status:
Not open for further replies.

Share This Page