-
AuthorPosts
-
February 6, 2020 at 12:52 am #1181938
https://aussiehiddentreasures.com/
front end password = aussieI 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%; }
February 6, 2020 at 2:36 am #1181948ok – 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%; }
February 9, 2020 at 6:03 pm #1182793Hi 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,
VictoriaFebruary 9, 2020 at 11:02 pm #1182873Thanks 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.jpgthe 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 pagesI have added the code to wp-content/themes/enfold-child/style.css
February 11, 2020 at 2:14 pm #1183485Hi 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,
VictoriaFebruary 11, 2020 at 2:14 pm #1183486Hi 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,
VictoriaFebruary 12, 2020 at 2:02 am #1183715ok
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 filehowever 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!!)February 12, 2020 at 2:20 pm #1183883 -
AuthorPosts
- You must be logged in to reply to this topic.