Forum Replies Created
-
AuthorPosts
-
AndyKeymaster
You could set a maximum height for the logo with this ‘Additional CSS’ added in the customizer:
.custom-logo { width: auto; max-height: 100px; }
Change
100px
to a suitable value, and make sure not to leave outwidth: auto
as this is required to stop the logo being distorted.June 10, 2020 at 9:12 am in reply to: My Additional CSS does not work no matter what coding i put in it #10901AndyKeymasterTo change color of page title:
.entry-header.with-image .entry-title, .archive-header.with-image .archive-title { color: #fff; }
The font is defined at ‘Customize’ > ‘Typography & Fonts’ > ‘Headings’
AndyKeymasterThe mobile menu layout/style has not changed in version 1.3.3.
It has always moved the page content to the right when the mobile menu is opened, this is not a new thing.Product photo display is out of the ordinary display mode
Could you please give us more information, as I don’t really understand what this means.
Can you let me know the URL of your website? Or can you do a screenshot of the problem with more information?June 9, 2020 at 3:46 pm in reply to: My Additional CSS does not work no matter what coding i put in it #10893AndyKeymasterThanks.
The site title and description are only displayed if there is no logo, but your site does have a logo so the CSS has nothing to target, and will have no effect.
AndyKeymasterPlease let me know your website URL so I can take a look. Thanks.
AndyKeymasterA couple of options;
1. Select the 3rd option in ‘Customize’ > ‘Layout Options’ > ‘Page Title Layout’.
This moves the page title out of the header area, and the logo/menu area will be similar height as your screenshot.
This layout does not contain the background image, so you could add it with this ‘Additional CSS’:#masthead.not-full { background-image: url('full-path-to-your-image'); }
2. Keep the page title in header, but change the height of the header area with the CSS code from this previous solution.
June 8, 2020 at 1:12 pm in reply to: My Additional CSS does not work no matter what coding i put in it #10874AndyKeymasterFrom what you’ve said it sounds like you have not done anything wrong.
If you can let me know the URL of your website, I’ll take a look and see if I can see if it is loading correctly.
Make sure there is actually some ‘Additional CSS’ saved in the customizer, so that there will be something for me to look for.
AndyKeymasterThere is no demo content at the moment, but we have a new plugin coming soon that will have demo content.
AndyKeymasterAre you using the theme’s homepage sections?
If so, make sure that ‘Page Content’ is enabled at Customize > Homepage Sections > Activate/Sort Sections
AndyKeymasterHi Joanna,
This Additional CSS snippet will hide the manually written excerpt on single posts:
.single-excerpt { display: none; }
- This reply was modified 4 years, 7 months ago by Andy. Reason: typo corrected
AndyKeymasterThe color of these is taken from the ‘Primary Color’ setting.
To override, add this CSS at ‘Customize’ > ‘Additional CSS’:
.top-tel .fa { color: #colorhexcode; }
AndyKeymasterSorry, I do not understand.
The homepage is editable in just the same way as any other page, and WordPress should not prevent you from being able to edit it.
Can you please give me some more information about this issue;
What happens when you go to ‘Pages’ > ‘Edit’ for the homepage (or any page)?
Do you see an error message?
Does the page editor load correctly?
Something else?AndyKeymaster.page .wp-post-image { display: block; margin-left: auto; margin-right: auto; }
AndyKeymaster.single .entry-header .entry-title, .page .entry-header .entry-title, .archive-header .archive-title, .archive-header .archive-title, .page-title { text-align: right; }
Add to Additional CSS in the customizer.
AndyKeymasterIn your Dashboard go to Pages, click edit for the page you want to edit (in this case the page that is set as your homepage). Now, in the editor, type your content into the page and click Publish to save.
If you are using a plugin to create the “announcements” content, the plugin may have either a
shortcode
or a block that can be used. For this you should look into the plugin’s support/documentation/help for more information regarding how to add it to a page. -
AuthorPosts