Grid View Spacing Error

Discussion in 'ClassiCraft WordPress Theme' started by careykidd, Mar 9, 2015.

  1. careykidd

    careykidd New Member

    Joined:
    Feb 18, 2015
    Messages:
    19
    Likes Received:
    0
    Screenshot attached.
    restaurantwarehse.com

    I have grid view as my default now, with large images like donedeal.com ..

    but my spacing is way off between rows and the footer.

    Please advise :(
     

    Attached Files:

  2. careykidd

    careykidd New Member

    Joined:
    Feb 18, 2015
    Messages:
    19
    Likes Received:
    0
    Figured it out guys!

    When you move the default to Grid View with a 100% width on the thumbnails (Like donedeal) you have to change the spacing in the ul.grid li

    Code:
    ul.grid li {
        position: relative;
        display: block;
        float: left;
        width:200px;
        height:170px;
        margin-right: 20px;
        padding-right: 15px;
        font-size: 13px;
        margin-top: 0;
        margin-bottom: 100px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
     
    }
     
  3. careykidd

    careykidd New Member

    Joined:
    Feb 18, 2015
    Messages:
    19
    Likes Received:
    0
    Ok problem.. How can I correct this CSS to work with Internet Explorer and Safari? Right now it is showing ok in Chrome.
     

    Attached Files:

  4. careykidd

    careykidd New Member

    Joined:
    Feb 18, 2015
    Messages:
    19
    Likes Received:
    0
    Also as well as the post above.. on Grid View -- the Spacing on MOBILE is really jacked up.. how can this be fixed?
     

    Attached Files:

  5. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello careykidd!

    We have checked your website in both IE and safari and doesn't find any issue that you have mentioned in your issue.
    See screenshot:- grid_error_IE.png grid_error_safari.png


    As far as next query is concerned,please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    @media only screen and (max-width: 480px){
    ul#products {
      width: 200px;
    }
    }
    Thanks,
    Praveen
     

Share This Page