Senff - a11n
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Header size in mobile viewHey @djuby
To remove that whitespace, try adding this:
.home.blog .site-header, .home.page:not(.page-template-template-homepage) .site-header, .home.post-type-archive-product .site-header { margin-bottom: 0; }Forum: Plugins
In reply to: [WooCommerce] WC_Cart->tax_display_cartHey @kowarler
Thanks for the SSR. I think this may be coming from your theme, seeing it has some override templates in there. Can you temporarily switch to a different theme and see if that makes a difference?
Forum: Plugins
In reply to: [WooCommerce] WC_Cart->tax_display_cartHey @kowarler,
To get a better idea of your site’s setup, could you share a copy of your site’s System Status Report? You can find it by going to your admin Dashboard and select WooCommerce → Status.
From there, select “Get system report” and then “Copy for support“. Once you’ve done that, you can paste it here in your response.
Forum: Plugins
In reply to: [WooCommerce] Ship to different addressHey @gsindhusha
I checked your site, but I do see a shipping address option in your site on the checkout page. Here’s what I see on my end:
Image link: https://d.pr/i/k0SVR2Has this issue been solved already or am I looking at the wrong page?
Forum: Plugins
In reply to: [WooCommerce] woo commerce categories not clickable on flatsome themeHey @jeffc2sky
It’s best to check this with Flatsome’s support team first. It’s possible that this is caused by a setting in your theme, or else it might be due to another plugin in your site.
Third party themes are best supported by their own resp. developers (and more importantly, I’d rather not give you any incorrect information).
It looks like their info and support page can be found here:
https://themeforest.net/item/flatsome-multipurpose-responsive-woocommerce-theme/5484319/supportForum: Plugins
In reply to: [WooCommerce] Navigation arrows not visibleHey @johannakoefoed
Are you referring to these arrows?
Image link: https://d.pr/i/PX6OEtI do see them on both your homepage and any other page, so perhaps this has been resolved already?
Hey @zaponcanarias
It’s not possible to make it a dropdown with just a bit of code. I would suggest to check with the plugin’s support team to see if there are options within the plugin’s settings to do that.
Forum: Plugins
In reply to: [WooCommerce] Hide Product Titles on Category PagesThis can be done with some CSS code, though to be able to help you with that, we’d need to see your site. Can you share a link so we can take a look?
Forum: Themes and Templates
In reply to: [Storefront] Product ImagesHey @fatamorkidd
The product image size is mostly determined by your theme.
This forum is meant for issues with the Storefront theme, but it looks like you’re using the Hello theme.
I’d recommend reaching out to the theme’s own support team to see if there are any options within the theme to change the product image.
Third party themes are best supported by their own resp. developers (and more importantly, I’d rather not give you any incorrect information).
It looks like that theme’s info and support page can be found here:
https://elementor.com/support/Forum: Themes and Templates
In reply to: [Storefront] Header size in mobile viewHey @djuby
Although the background image of a header is not directly meant to be an image (with a logo) like you have, but is more meant to be decorative (like a pattern), you can use some CSS to make it look a bit better.
Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:
@media screen and (max-width: 800px) { #masthead { background-size: 100% auto; } }Select “Save Changes” from the top, and your changes will be applied to your site.
Forum: Themes and Templates
In reply to: [Storefront] Header and footer not full widthHey @dachafurniture
If the pages that are created in Elementor (such as the ABOUT page) don’t look as good as the pages that are not created in Elementor (such as the TEMP page), there’s a good chance that there is something in your Elementor settings, or your page settings that cause this.
Even though the header and footer themselves are not created in Elementor, they still take the styles from the overall page settings (which come from your Elementor settings) so I would suggest to look into that a bit more.
Hey @zaponcanarias
The grey shadow can be removed with some CSS code.
Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:
.widget_layered_nav ul li::before { display: none; } @media screen and (max-width: 767px) { body.archive #content .col-full{ display: flex; flex-direction: column; } body.archive #content .col-full .woocommerce { order: 1; } body.archive #content .col-full #primary { order: 3; } body.archive #content .col-full #secondary { order: 2; } }You should see the changes right away, but this is just a preview for you, so you can experiment a little if you like.
Once you’re happy with it, select “Save Changes” from the top, and your changes will be applied to your site.Forum: Themes and Templates
In reply to: [Storefront] different footer image on mobile deviceHey @susanmelchers
I don’t see the code applied anywhere in your site. Where did you add it exactly? Can you make a screenshot of it and share it here?
For making screenshots, I generally recommend using https://snipboard.io — please follow the instructions on that page, then paste the URL here in your response.
Forum: Plugins
In reply to: [WooCommerce] quantity input and Add to cart on the same lineTry adding this as well:
.quantity .minus, .quantity .plus { line-height: 45px; }Forum: Plugins
In reply to: [WooCommerce] quantity input and Add to cart on the same lineThis may help:
.woocommerce .quantity input.qty { border: solid 2px black; min-height: 38px; margin-bottom: 20px; } .woocommerce .quantity a.minus { border: solid 2px black; border-right: 0; } .woocommerce .quantity a.plus { border: solid 2px black; border-left: 0; }