Forum Replies Created

Viewing 15 posts - 61 through 75 (of 173 total)
  • Author
    Posts
  • in reply to: Featured Image: Too Big on Blog Page! #7054
    Yazmin
    Keymaster

    Closing this topic and marking as resolved as no reply from OP after 2 months.

    in reply to: new post doesn't show up on the post page #7053
    Yazmin
    Keymaster

    Closed and marked as resolved as no reply from OP after 2 months.

    in reply to: Get a Quote form is not coming on top of header image #7046
    Yazmin
    Keymaster

    The header image can be changed per page (and post, product, category etc.) in the Pro version. This extra option is not available in the free theme, sorry.

    I am going to close this topic and mark as resolved as I believe your original question regarding changing the height of the header image has now been resolved successfully.

    in reply to: Title Picture #5903
    Yazmin
    Keymaster

    With Trusted Pro you can change both the icon and the background image individually for each post, page, product, category etc.

    Also, Trusted Pro has the option to use a custom header where the “title image” and page/post title is, and it accepts [shortcodes] so if you have a slider plugin (or any other content generating plugin) that uses shortcodes, this will work.

    in reply to: Consistent full screen Website display on all devices #5902
    Yazmin
    Keymaster

    Hi, I’m not completely sure what the issue is.
    Is the footer always half the way up the screen on all pages of your site?
    Is the footer being displayed across/overlapping your page content?
    Do you have a URL I can take a look at to see this problem?

    in reply to: How to add Copyright statement to the Exoplanet Footer #5883
    Yazmin
    Keymaster

    Hello Fred,

    Exoplanet Pro has the option to replace “Powered by WordPress | Theme: Exoplanet by UXL Themes” in the lower footer with your own text/content.

    Should you not wish to purchase Exoplanet Pro, the free version of Exoplanet has a widgetized area ‘Middle Footer’ where you can add any of your available widgets (‘Text’, ‘Custom HTML’ etc) with your own copyright statement. This ‘Middle Footer’ is displayed horizontally between the 4 footer columns widget areas and the lower footer area and it will not leave an empty black space at the foot of the screen.

    Hope this helps.

    in reply to: register #5870
    Yazmin
    Keymaster

    Hi Juan,

    The registration section of a WordPress site is not theme functionality, so I would recommend you check out the WordPress documentation and support or if you are using a plugin that has it’s own registration functionality (e.g. WooCommerce) you should consult with the plugin support/documentation.

    in reply to: Change color and text "on sale" #5788
    Yazmin
    Keymaster

    Hi Jan,

    The color of the price tag when on sale can be changed at Customize > Shop Options > Sale Color

    The ‘On Sale’ text is actually handled by the WooCommerce plugin and not by the theme.
    It is a translatable text string, which is why WooCommerce automatically displays it in your site’s language.

    To change this we would recommend using a plugin such as Loco Translate.

    The key thing to note is that in the Loco Translate settings look for the appropriate ‘On Sale’ translatable text string for the WooCommerce plugin and not the Trusted Pro theme.

    Edit: Have I misunderstood the second part of your question? You don’t want to change the actual text, just the way it is currently displayed in ALL CAPS?

    In this case, add this to Customize > Additional CSS:

    .woocommerce span.onsale {
        text-transform: none;
    }

    Or if the above code doesn’t work as expected, try this instead:

    .woocommerce span.onsale {
        text-transform: capitalize;
    }
    • This reply was modified 5 years, 7 months ago by Yazmin. Reason: extra info
    in reply to: Change header background color #5780
    Yazmin
    Keymaster

    To change the background color of the header from the default grey (#e2e7eb) to white, use this Additional CSS:

    #masthead {
        background-color: #fff;
    }
    in reply to: Remove Search feature in Main Menu #5774
    Yazmin
    Keymaster

    In that case, remove the previous CSS and add this instead:

    .site-main-menu {
        width: 100%;
    }
    
    .site-search {
        display: none;
    }
    in reply to: Remove Search feature in Main Menu #5772
    Yazmin
    Keymaster

    The quick and easy way is to hide it by adding the following to Customize > Additional CSS:

    .jorvik-search {
        display: none;
    }
    in reply to: Site title and description font size #5424
    Yazmin
    Keymaster

    Add this to Additional CSS, changing the font-size to suit.

    .site-title{
        font-size: 28px;
    }
    
    #site-description{
        font-size: 12px;
    }

    If you also want to change the font size of the site title in the sticky header when scrolling down the page, this will do it:

    #masthead.scrolled .site-title{
        font-size: 24px;
    }
    in reply to: Background color for links #5417
    Yazmin
    Keymaster

    Hi, to change the background color of menu items only, use this CSS (change #aabbcc for your actual color):

    #primary-menu a {
        background: #aabbcc;
    }

    Add the code to Appearance > Customize > Additional CSS or to the stylesheet of a child theme.
    It is not recommended to edit the theme’s style.css file directly as your changes will be undone when the theme is updated.

    in reply to: Hide Featured Services on mobile deives #5287
    Yazmin
    Keymaster

    Hi Phil,

    Add this code in Appearance > Additional CSS

    @media screen and (max-width: 768px){
        #featured-post-section{
            display: none;
        }
    }
    in reply to: Form success message not showing #5257
    Yazmin
    Keymaster

    You try something like this added to Customize > Additional CSS

    .woocommerce #content div.product div.images,
    .woocommerce div.product div.images,
    .woocommerce-page #content div.product div.images,
    .woocommerce-page div.product div.images{
        width: 18%;
    }
    
    .woocommerce #content div.product div.summary,
    .woocommerce div.product div.summary,
    .woocommerce-page #content div.product div.summary,
    .woocommerce-page div.product div.summary{
        width: 80%;
    }
Viewing 15 posts - 61 through 75 (of 173 total)