Forum Replies Created

Viewing 15 posts - 361 through 375 (of 1,124 total)
  • Author
    Posts
  • in reply to: Site Logo site #10955
    Andy
    Keymaster

    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 out width: auto as this is required to stop the logo being distorted.

    Andy
    Keymaster

    To 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’

    in reply to: The menu in the mobile display is of poor quality #10894
    Andy
    Keymaster

    The 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?

    Andy
    Keymaster

    Thanks.

    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.

    in reply to: The menu in the mobile display is of poor quality #10888
    Andy
    Keymaster

    Please let me know your website URL so I can take a look. Thanks.

    in reply to: Header image way too tall #10883
    Andy
    Keymaster

    A 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.

    Andy
    Keymaster

    From 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.

    in reply to: Import Demo Truted #10872
    Andy
    Keymaster

    There is no demo content at the moment, but we have a new plugin coming soon that will have demo content.

    in reply to: Announcements widget on homepage #10854
    Andy
    Keymaster

    Are you using the theme’s homepage sections?

    If so, make sure that ‘Page Content’ is enabled at Customize > Homepage Sections > Activate/Sort Sections

    in reply to: Cannot remove excerpt of page on slider image #10839
    Andy
    Keymaster

    Hi 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
    in reply to: Profile and cart button colors #10829
    Andy
    Keymaster

    The color of these is taken from the ‘Primary Color’ setting.

    To override, add this CSS at ‘Customize’ > ‘Additional CSS’:

    .top-tel .fa {
        color: #colorhexcode;
    }
    in reply to: Announcements widget on homepage #10824
    Andy
    Keymaster

    Sorry, 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?

    in reply to: Move page header a side #10812
    Andy
    Keymaster
    .page .wp-post-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    in reply to: Move page header a side #10808
    Andy
    Keymaster
    .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.

    in reply to: Announcements widget on homepage #10806
    Andy
    Keymaster

    In 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.

Viewing 15 posts - 361 through 375 (of 1,124 total)