Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1181938

    https://aussiehiddentreasures.com/
    front end password = aussie

    I have a few issues with mobile/tablet layout probably some due to my custom css (see below)

    https://aussiehiddentreasures.com/wp-content/uploads/2020/02/IMG_0024.jpg
    On loading of vertical screens on an iPad (held vertical) the logo does not shrink and menu covers it – when scrolled down the menu adjusts it size – I’d like it to be the adjusted size when the page loads or went to a burger menu on any smaller screens – but i can’t find a setting
    Also the widget side menu is too small – the wording is cut off – it would be best if that did not appear at all
    I’ve tried

    @media only screen and (max-width: 600px) {
    .single-product .sidebar {
        display: none;
    }

    but that didn’t work

    I have also added the code in the functions.php file as per this thread
    https://kriesi.at/support/topic/woocommerce-menu/

    here is my custom css

    ..page-thumb { display: none;
    }
    .woocommerce-tabs { display: none !important;
    }
    .related.products {  display: none;
    }
    .template-shop {
        background-image: url(https://aussiehiddentreasures.com/wp-content/uploads/2020/01/bg5-light.jpg);
        background-repeat: repeat;
        background-position: top left;
    }
    .single-product .template-shop {
        background-image: url(https://aussiehiddentreasures.com/wp-content/uploads/2020/01/bg1.jpg);
        background-repeat: repeat;
        background-position: top left;
    }
    .single-product-summary  {
          background-image: url(https://aussiehiddentreasures.com/wp-content/uploads/2020/01/80-white-frost-panel-1.png);
        background-repeat: repeat;
    padding-top: 20px;
      padding-right: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
    }
    .inner_sidebar {
          background-image: url(https://aussiehiddentreasures.com/wp-content/uploads/2020/01/80-white-frost-panel-1.png);
        background-repeat: repeat;
    padding-top: 20px;
      padding-right: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
    }
    .pagination {
          background-image: url(https://aussiehiddentreasures.com/wp-content/uploads/2020/01/80-white-frost-panel-1.png);
        background-repeat: repeat;
    padding-top: 20px;
      padding-right: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
    }
    .single-product-main-image {
        width: 25%;
    }
    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: left;
        margin-right: 5%;
    }
    .single-product .sidebar {
        width: 30%;
    }
    @media only screen and (max-width: 600px) {
    .single-product-summary {
    width: 100%;
    }
    
    #1181948

    ok – I managed to find the setting for the burger menu and have set it so that is loads when iPad is vertical

    but if you can help with removing the widget menu

    https://aussiehiddentreasures.com/our-products/
    I have changed the settings on this page for the column containing the widget menu to “hide on mobile devices” but it is still showing up on an iPad (but does not show on a phone – maybe there is a setting to set the size that it disappears at)

    or maybe there is a setting that will load it below (as it’s doing on the product pages)

    I have also removed the following from the css

    .single-product-main-image {
        width: 25%;
    }
    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: left;
        margin-right: 5%;
    }
    .single-product .sidebar {
        width: 30%;
    }
    @media only screen and (max-width: 600px) {
    .single-product-summary {
    width: 100%;
    }
    #1182793

    Hi smarta-brett,

    Yes, the option to hide on mobile will only hide on mobile and not the tablets.

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width:768px) and (max-width: 989px) {
        #av_section_1 div .av_one_fifth {
            margin-left: 1%;
            width: 20.2%;
            padding-left: 10px !important;
        }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1182873

    Thanks Victoria

    as you can see in this screen shot
    https://aussiehiddentreasures.com/wp-content/uploads/2020/02/Screen-Shot-2020-02-10-at-7.53.29-am.jpg

    the menu looks wider on the pages that are using enfold (and looks ok now – but I’d still like to hide it completely)

    however the woocommerce generated pages are still weird looking
    the products category page and the single product pages

    I have added the code to wp-content/themes/enfold-child/style.css

    #1183485

    Hi smarta-brett,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width:768px) and (max-width: 989px) {
        #top.woocommerce .inner_sidebar {
            margin-left: 0px;
            padding-right: 15px;
            padding-left: 15px;
        }
    }

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1183486

    Hi smarta-brett,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width:768px) and (max-width: 989px) {
        #top.woocommerce .inner_sidebar {
            margin-left: 0px;
            padding-right: 15px;
            padding-left: 15px;
        }
    }

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1183715

    ok
    that didn’t work either I tried with both the suggested sets of code and then just the 2nd one by itself
    I tried it in both custom css and in the css file

    however I seem to have got a work around

    @media only screen and (min-width:768px) and (max-width: 989px) {
        #top.woocommerce .inner_sidebar {
    display: none !important;
        }
    }
    

    Hides the menu on a iPad in vertical but displays it in horizontal format
    this works ok
    thanks for your help! (once again!!)

    #1183883

    Hi,

    Great, I’m glad that you found a solution and thanks for sharing. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.