Forum Replies Created

Viewing 15 posts - 241 through 255 (of 1,124 total)
  • Author
    Posts
  • in reply to: Disable page slider effects. #12333
    Andy
    Keymaster

    The sliding effects are not enabled by default, so if you have enabled this you can also disable it.

    Go to ‘Appearance’ > ‘Customize’ > ‘Theme Options’ and the ‘Enable Reveal Animations’ can be unselected.

    Unselecting this option will disable the sliding effects of the pages.

    in reply to: Top footer issue #12323
    Andy
    Keymaster
    #above-footer .widget_media_image {
        display: inline-block;
        margin: 1em;
    }
    in reply to: Top footer issue #12316
    Andy
    Keymaster
    #above-footer .widget_media_image {
        display: inline-block;
    }
    in reply to: Blocks per row (front) page mobile version #12295
    Andy
    Keymaster

    I can’t be sure from your image, but are you using the standard “Columns” block?

    If so, add this CSS to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’:

    @media (max-width:599px) {
        .wp-block-column {
            flex-basis: calc(50% - 16px) !important;
            flex-grow: 0;
        }
        .wp-block-column:nth-child(2n) {
            margin-left: 32px;
        }
    }
    Andy
    Keymaster

    Add this to Customize > Additional CSS (change the font-size values to the size you want)

    @media (max-width: 768px) {
        .hero-content-wrap {
            font-size: 16px !important;
        }
        .hero-widget-title {
            font-size: 48px !important;
        }
    }
    in reply to: Blocks per row (front) page mobile version #12265
    Andy
    Keymaster

    Please let me know which “blocks” are you referring to?

    in reply to: title page #12264
    Andy
    Keymaster

    The CSS you posted – .header-title { display: none; } – will remove the page title across all pages of your site.

    If you want to remove the title only on the home page, use this instead: .home .header-title { display: none; }

    in reply to: Don’t show logo on “home” #12263
    Andy
    Keymaster

    The home page does not have the post-id in the body class like other pages do, it does however contain the home class.

    So the CSS to apply only to the home page would be this:

    .home #site-branding .custom-logo{display: none;}

    in reply to: Remove google-fonts #12247
    Andy
    Keymaster

    Oops! Yes, good spot!

    I have corrected it now, sorry about that.

    in reply to: Remove google-fonts #12244
    Andy
    Keymaster

    Add this php code to your child theme’s functions.php:

    function cordero_fonts_url() {
    	return;
    }
    
    function cordero_editor_fonts_url() {
    	return;
    }

    The code will make these two functions return nothing, so disabling the Google fonts.

    The first function is for the front end of the website, and the second function is for the page/post editor if you also want to remove Google fonts from there.

    • This reply was modified 4 years, 3 months ago by Andy. Reason: typo corrected
    in reply to: Child theme #12228
    Andy
    Keymaster

    Any customizations made with Trusted Pro can be copied over to your child theme.

    After installing and activating your child theme, go to “Theme Mods” in your dashboard (just above “Appearance” in the side panel).

    On this page there are options for copying the theme customizations from free to pro, and also from Trusted Pro to a child theme.

    Under the heading “*Childthemename* is a child theme of Trusted Pro” is a button “Import From Trusted Pro”.

    Click this button to copy your customizations into your child theme.

    in reply to: Add an image in the header #12208
    Andy
    Keymaster

    Try absolute positioning with something like this:

    .tree {
        position: absolute;
        top: 0;
        right: 30%;
    }

    Additional info, you may also need to give the menu a z-index value to make sure its background color doesn’t disappear behind the tree image:

    #site-navigation {
        z-index: 1;
    }
    • This reply was modified 4 years, 3 months ago by Andy. Reason: Added additional information
    in reply to: Copyright and year #12205
    Andy
    Keymaster

    In your dashboard, go to Appearance > Widgets.

    There you will see four widget areas in the footer section; “Top Footer”, “Footer Column 1”, “Footer Column 2”, and “Footer Column 3”.

    Add any widget such as text, image etc to any of the four widget areas. In the text widget write your company name and year, and use the image widget to add an image.

    in reply to: Remove cart and account icon from the menu #12204
    Andy
    Keymaster

    Add this CSS to Customize > Additional CSS:

    .top-account,
    .top-cart {
        display: none;
    }
    in reply to: Hide top bar widget when scrolling down #12189
    Andy
    Keymaster

    Add either of these snippets of CSS to Customize > Additional CSS

    #masthead.scrolled #top-bar {
        display: none;
    }

    or this may be smoother effect

    #masthead.scrolled #top-bar {
        visibility: hidden;
        height: 0;
    }
Viewing 15 posts - 241 through 255 (of 1,124 total)