Forum Replies Created
-
AuthorPosts
-
AndyKeymaster
The menu item of the current page takes the same color as the ‘Color 2’ option by default. It sounds like you have made the menu background the same as this color.
Anyway, to change the current page menu item to a different color, add this CSS at Customize > Additional CSS:
#primary-menu li.current-menu-item > a { color: #e08b8b; }
#e08b8b
is the standard ‘Color 2’ color, so change this to any color you want.AndyKeymasterThis is outside the scope of the theme.
What have the Polylang support team said? Have they been able to help?
As I understand it, with Polylang you can create different language versions of your pages, and the homepage is just a page like any other, so you should be able to add a French version of that page too.
The Polylang documentation should be able to help with this.
AndyKeymasterThe “Complete order” text is not part of the theme.
It sounds like it could be from WooCommerce plugin.
Anyway, a good plugin to use for replacing text strings such as this is the Say What plugin.
AndyKeymasterGo to Appearance > Widgets and add a widget to the ‘Footer Site Info’ widget area.
Now your own content/text in the widget will be displayed instead of the theme branding.
May 11, 2020 at 12:32 pm in reply to: Removing buttons in Woocommerce Block “Hand Picked Products” #10482AndyKeymasterTesting the hand picked products block, and I can see there is no way to add extra paragraphs, so please ignore my previous comment.
However, when I test the hand picked products block, the extra paragraphs that are on your site are not present on our testing site.
It is possible it could be a third-party plugin that is inserting these extra paragraphs, although I cannot be sure.
I would recommend you deactivate all your active plugins (not WooCommerce), and see if the issue is fixed. Then reactivate your plugins one at at time until the issue reappears. This will show you which plugin (if any) is adding these extra paragraphs.
May 11, 2020 at 12:25 pm in reply to: Removing buttons in Woocommerce Block “Hand Picked Products” #10481AndyKeymasterIf I am understanding correctly, when I view the rendered HTML code, the grey buttons are not actually buttons.
They appear to be extra product links within an extra paragraph (grey text on a grey background), that is inside the main product link.
I don’t know how or why they are there, as they should not be there.
Have you also added an extra paragraph block within each product? If so, this might explain it.
AndyKeymaster#home-hero-section .button, #home-hero-section a.button { color: #colorhere; background: #backgroundhere; }
AndyKeymasterYes, this CSS code will center the featured image.
.single .wp-post-image { display: block; margin-left: auto; margin-right: auto; }
AndyKeymasterIf you just have a small amount of text and want to force it to two lines, try this Additional CSS
.slide-button-right { max-width: 140px; min-width: auto; }
You will need to change the ‘140px’ value to suit your text, and it may not 100% work, but you could try it and see.
AndyKeymasterGo to Customize > Static Homepage Options > Full Screen Slider/Hero Section and then for each slide there are two text boxes marked Left Button Text and Right Button Text.
Write your text into these text areas. Sorry these do not accept any html markup including line breaks.
AndyKeymasterHi, add this to Customize > Additional CSS:
.single .entry-meta { display: none; } .single .entry-footer > *:not(.cat-links):not(.tags-links) { display: none; }
AndyKeymasterHi, you haven’t enabled this, as it is the default theme style to have the fixed masthead.
To stop this, add this to Customize > Additional CSS:
#masthead.scrolled { display: none; }
AndyKeymasterCustomize > Colors > Products > Sub-category Background
AndyKeymasterThe header background image is centered by default, and as it is a background image it has to fill the header/page title area.
You can change the focal point of the background by adding this CSS snippet at Customize > Additional CSS:
.entry-header.with-image, .archive-header.with-image { background-position: 85% center; }
This will move the focal point from the center to approximately where the main character is on your image. You won’t notice any difference on wide screens, but as the screen narrows on mobile, the main character should be centered.
April 28, 2020 at 4:15 pm in reply to: Remove/hiding page title from displaying at bottom of main header image #10374AndyKeymasterYou have a few different options
- Select the alternative page title layout with no large header image, Customize > Layout Options > Page Title Layout
- If you just want to remove the large header and page title on a specific page, go to the page editor and select the Blank Canvas page template
- To hide the page title site-wide, but keep the large header image, add this code at Customize > Additional CSS
.entry-header.full .title-meta-wrapper, .archive-header.full .title-meta-wrapper { display: none; }
-
AuthorPosts