johannsf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Full sized image not displayingDo you have your image sizes set in Settings>Media? You shouldn’t have to remove the class.
@stuartduff Thanks – I was posting example images for the original poster. This is my demo/sandbox site that gets messed with all the time.
Hi – on my demo site I have two settings that control my tax rates – the zones:
https://snipboard.io/KO2M7D.jpg
and the settings:
https://snipboard.io/1s6fxg.jpg
Does this look like what you have set up?
Forum: Fixing WordPress
In reply to: white background behind transparent imageThere’s a way around that. Add the following css to your additional css:
post img, .type-page img {
border: none;
}That will disappear the border.
- This reply was modified 4 years, 4 months ago by johannsf.
Forum: Fixing WordPress
In reply to: white background behind transparent imageHi – I’m glad you’re making progress! Your image and its div are wrapped in:
post img, .type-page img {
padding: .53em;
/* border: 1px solid #e3e7e8; */
}You can also add border: none; to the CSS for post img and type-page tags. If you scan your CSS for the border color – #e3e7e8 it will help you find all the places it’s inserting itself in to your page. Good luck.
- This reply was modified 4 years, 4 months ago by johannsf.
Forum: Fixing WordPress
In reply to: white background behind transparent imageYour body tag has a white background. Your page has a blue background. If you take out the body background you end up with a blue background, which won’t be what you want either. You may want to create any effects on the image itself with a white background. Here’s the css that changes the body:
@media screen
style.css:309body {
font-size: 1.4em;
line-height: 1.618;
color: #6c6360;
font-family: “Open Sans”, sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
padding: 0 1.618em;
/* background: #ffffff; */
}Forum: Plugins
In reply to: [WooCommerce] How to add shipping zone to shipping classHi Randy. You may need to add a shipping plugin that allows more flexibility. I have furniture on one of my sites that can only be picked-up. Setting local pick-u[ for those items works, but it sounds like you need another layer beyond that. Have you looked at:
https://www.ads-software.com/plugins/conditional-shipping-for-woocommerce/Forum: Plugins
In reply to: [WooCommerce] Variable Products all charging lowest priceCould you share a link to your site?
Forum: Plugins
In reply to: [WooCommerce] shipping and payment helpHi – I also added another bag, so a total of $60 and was offered free freight, so I think it is working correctly!
Forum: Plugins
In reply to: [WooCommerce] shipping and payment helpI am seeing 2 options – flat rate and local. I’m also given the option of PayPal or Stripe.
Forum: Plugins
In reply to: [WooCommerce] Change Category / Subcategory titleHi – Categories are created and edited under the Products tab on the left.
https://docs.woocommerce.com/document/managing-product-taxonomies/
Forum: Plugins
In reply to: [WooCommerce] Page Tabs Default To DescriptionHi – it can be done, but it might not be so easy! Check out the information about tabs:
https://docs.woocommerce.com/document/editing-product-data-tabs/
and this information about switching the active tab: https://andrewrminion.com/2018/02/activate-specific-woocommerce-tab/
What theme are you using for your site?
Forum: Plugins
In reply to: [WooCommerce] A product category missing from the shop frontGood work!
Forum: Plugins
In reply to: [WooCommerce] A product category missing from the shop frontHello! I’m going to refer you to this thread: https://www.ads-software.com/support/topic/show-more-than-3-categories-on-homepage-control-storefront-product-categories/
Which may help you solve your problem.
Forum: Fixing WordPress
In reply to: Blank lines in table disappearSorry, I see that now. I would strip out all the formatting and then restyle it, but you might try a plug-in called TablePress: https://tablepress.org/ . That would help you preserve your tables the way you want them.