Forum Replies Created
-
AuthorPosts
-
August 13, 2020 at 11:20 am in reply to: Ιmage titles and web page title are displayed 3 times #11809AndyKeymaster
You have a plugin “WP-Copyright-Protection” that may be stopping Google from caching your images and/or stylesheet, and also a caching plugin that may doing the same.
It is not an issue with the theme, and I would recommend asking for help from the creators of the plugins.
August 12, 2020 at 11:01 am in reply to: Ιmage titles and web page title are displayed 3 times #11797AndyKeymasterWhen I view your website, it looks fine to me. The page title looks okay, and the image title I see no issue with them.
I also looked at the Google cache, and it also looks fine to me. I cannot see any issues so I’m not sure how to help.
Can you attach as screenshot showing the issue please?
August 11, 2020 at 11:15 am in reply to: Get rid of whitespace between post title and content #11774AndyKeymasterYes, it is because some posts have more content than others, and as the box of each post in the same row is the same height, the spacing is like this so that the content starts at the top of the box, and the last piece of content ends at the bottom of the box.
You can change this to make all the empty space be displayed at the end of the last piece of content.
Add this code to ‘Customize’ > ‘Additional CSS’:#grid-loop article, #main.infinite-grid .infinite-wrap article { justify-content: normal; }
Or if you prefer the empty space at the beginning, use this code instead:
#grid-loop article, #main.infinite-grid .infinite-wrap article { justify-content: end; }
AndyKeymasterCopy this code to ‘Customize’ > ‘Additional CSS’:
body:not(.home) .entry-header.with-image, body:not(.home) .archive-header.with-image { display: none; }
That will hide the image header area everywhere but the homepage.
AndyKeymasterThe “Caption Sub Title” setting will allow HTML markup, so you could add your image/link there.
AndyKeymasterThe header image displays the page’s “Featured Image” if that page has a featured image.
In the page editor, add/upload an image as the “Featured Image” for that page.
In the customizer – ‘Customize’ > ‘Appearance’ > ‘Header Image’ – make sure the “Pages should display…” setting is set to the “Featured Image” option, and not the “Default Header Image” option.
AndyKeymasterIt looks like you have made some changes to the header layout in your child theme, but not changed it so the logo can go bigger than the standard area it is allocated.
Try adding this CSS also:
@media only screen and (min-width: 1025px) { #masthead > .container { grid-template-columns: 100%; } }
AndyKeymasterCopy this code to ‘Customize’ > ‘Additional CSS’
#masthead .top-account, #masthead .top-cart { display: none; }
AndyKeymasterWhen you upload a logo, the ‘Crop Image’ option is not mandatory. You can click ‘Skip Cropping’ and the image will not be cropped.
AndyKeymasterThanks.
I tried the CSS I suggested and it does work.
I can also see you’re targeting
.site-content
(this is same element as #content) in your child theme with all round padding of 2em, so you may want to use this instead:.site-content { padding-top: 2em !important; }
AndyKeymasterI think a theme option to turn off the sticky header would be a good idea for the next theme update. We’ll get that added.
AndyKeymasterThat CSS should work. Would you be able to let me know your page URL and I’ll take look.
The extra padding is javascript calculated as the height of your header to make the sticky header scrolling more seamless on the transparent header page template.
July 27, 2020 at 8:45 pm in reply to: The height of the Google Maps is getting bigger and bigger #11661AndyKeymasterThank you for the update. Glad to hear you got it sorted, I completely missed the no scrolling variable.
AndyKeymasterHi, did you find out what was causing this?
AndyKeymasterFor two per row, use this CSS code:
@media only screen and (max-width: 480px) { .woocommerce ul.products.columns-2, .woocommerce-page ul.products.columns-2, .woocommerce ul.products.columns-3, .woocommerce-page ul.products.columns-3, .woocommerce ul.products.columns-4, .woocommerce-page ul.products.columns-4, .woocommerce ul.products.columns-5, .woocommerce-page ul.products.columns-5, .woocommerce ul.products.columns-6, .woocommerce-page ul.products.columns-6, .woocommerce ul.products.columns-7, .woocommerce-page ul.products.columns-7, .woocommerce ul.products.columns-8, .woocommerce-page ul.products.columns-8, .wc-block-grid.has-2-columns .wc-block-grid__products, .wc-block-grid.has-3-columns .wc-block-grid__products, .wc-block-grid.has-4-columns .wc-block-grid__products, .wc-block-grid.has-5-columns .wc-block-grid__products, .wc-block-grid.has-6-columns .wc-block-grid__products, .wc-block-grid.has-7-columns .wc-block-grid__products, .wc-block-grid.has-8-columns .wc-block-grid__products { grid-template-columns: repeat(2,48.5%); } }
For three per row use this:
@media only screen and (max-width: 768px) { .woocommerce ul.products.columns-2, .woocommerce-page ul.products.columns-2, .woocommerce ul.products.columns-3, .woocommerce-page ul.products.columns-3, .woocommerce ul.products.columns-4, .woocommerce-page ul.products.columns-4, .woocommerce ul.products.columns-5, .woocommerce-page ul.products.columns-5, .woocommerce ul.products.columns-6, .woocommerce-page ul.products.columns-6, .woocommerce ul.products.columns-7, .woocommerce-page ul.products.columns-7, .woocommerce ul.products.columns-8, .woocommerce-page ul.products.columns-8, .wc-block-grid.has-2-columns .wc-block-grid__products, .wc-block-grid.has-3-columns .wc-block-grid__products, .wc-block-grid.has-4-columns .wc-block-grid__products, .wc-block-grid.has-5-columns .wc-block-grid__products, .wc-block-grid.has-6-columns .wc-block-grid__products, .wc-block-grid.has-7-columns .wc-block-grid__products, .wc-block-grid.has-8-columns .wc-block-grid__products { grid-template-columns: repeat(3,31.33%); } }
Copy the code to ‘Customize’ > ‘Additional CSS’ and hit publish button to save.
-
AuthorPosts