Forum Replies Created

Viewing 15 posts - 151 through 165 (of 173 total)
  • Author
    Posts
  • in reply to: Featured Services #2282
    Yazmin
    Keymaster

    You can increase or decrease the size of the icons with the ‘Icon Size’ setting.

    The number of columns (features per row) can also be changed from 1 to 6.
    For example if you choose 4 columns, each will be 1/4 of the overall width.

    in reply to: Problem with the static front page 3 features with icons #2167
    Yazmin
    Keymaster

    Hi Renata

    The documentation shows how to set up the featured services section here: https://uxlthemes.com/docs/trusted-theme/setting-up-the-home-page/

    Select a page for each of the three featured services.

    When you select a page from the dropdown selector, the title and the excerpt of the selected page will display in the box.

    You can also change the icon which is diplayed above the title of each box, and there are more than 700 icons to choose from.

    in reply to: Top telephone icon problem #2139
    Yazmin
    Keymaster

    By default the telephone icon is same color as the ‘Secondary Color’ setting and the circular background is by default slighty darker than the ‘Primary Color’. It changes to white color when hovering the cursor over it.

    To override the background color of the phone icon to make it white color, add this css in Appearance > Customize > Additonal CSS:

    .top-tel .fa{
        background: #fff;
    }

    If you want a different background color when hovering over the icon:

    .top-tel .mobile-clear:hover .fa{
        background: #fff;
    }

    #fff is white color. Change this if you want a different color.

    in reply to: How to show Text on Home Page Banner #2138
    Yazmin
    Keymaster

    The Trusted theme has support for page and post excerpts, and it is the hand-crafted page excerpt that is displayed in the area you highlight in your screenshot.

    To write an excerpt for any page, go into the page editor and write your own excerpt in the ‘Excerpt’ text area just below the main content area.

    If you cannot see anywhere to add an excerpt, click on ‘Screen Options’ tab in the top right and make sure the box next to []Excerpt is checked. Once this box is checked you will be able to see the excerpt area.

    in reply to: Primary Horizontal Menu Problem #2127
    Yazmin
    Keymaster

    Sorry, that is the design of the theme.

    On smaller screens such as mobile it makes use of a menu icon to bring up the menu when clicked on.

    in reply to: Blog posts appear on my "home" page #2121
    Yazmin
    Keymaster

    Hello Meape, can you please supply some more details about what you want achieve for your home page to be your home page?

    if you do not set a static front page, then the home page will show your latest posts.
    if you do set a static front page, then the home page will show that page.

    whichever one you choose is your home page.

    in reply to: Show images in "featured" #2115
    Yazmin
    Keymaster

    The markup should go in the ‘Excerpt’ area, not the main content area.

    The Excerpt text area is just below the main content area. If you cannot see anywhere to write an excerpt, click on ‘Screen Options’ in the top right of the page/post editor and make sure the box next to []Excerpt is checked.

    Note: don’t paste html markup into the main content area when it is in Visual mode, use Text mode instead as the Visual mode can change markup such as < " into code that won’t render properly when you view the page or post.

    in reply to: Show images in "featured" #2113
    Yazmin
    Keymaster

    Hi Tom

    Yes it is possible to add an image in the text area.
    Simply write your own excerpt for the selected page in the page editor, and add html markup for an image

    example:
    <img src="http://www.yourwebsite.com/wp-content/uploads/2017/09/image-name.jpg" />

    Add text before and/or after the image markup if you want.

    The pro version – Trusted Pro – also allows you to upload your own images in place of the icons.

    Hope this helps.

    in reply to: How do I change the position of the Primary Menu? #2095
    Yazmin
    Keymaster

    You could add a margin at the top of the menu with this css (changing 30px to your desired value):

    .site-navigation {
        margin-top: 30px;
    }

    Add css in Appearance > Customize > Additional CSS

    in reply to: Changing the Width of the Sidebar #2094
    Yazmin
    Keymaster

    Hello

    Add this in Appearance > Customize > Additional CSS

    @media screen and (min-width: 768px){
        #primary{
            width: 66%;
        }
        #secondary{
            width: 31%;
        }
    }

    change 66% and 31% to the widths you need.

    you will notice that 66 + 31 = 97. This allows a 3% spacing between the main content and the sidebar.

    in reply to: Blog posts appear on my "home" page #2057
    Yazmin
    Keymaster

    Hi, not sure how you are differentiating between ‘blog post’ and ‘general posts’, but this is outside the scope of the theme.

    It is plugin functionality and you would need to ask the authors of the plugin you are using – Blog Designer Support – as we do not have knowledge of the coding of that plugin and can only answer questions about our themes.

    in reply to: Adust Width of Caption in Home Page Slider #1658
    Yazmin
    Keymaster

    Hi, yes it is possible.

    In Appearance > Customize > Additional CSS add this CSS, change the 650px to a suitable width:

    .slide-caption {
    width: 650px;
    }
    in reply to: Outdated Copies Of WooCommerce Template Files #1500
    Yazmin
    Keymaster

    Hello Ivette

    Please make sure you update to the latest version of the theme.

    Exoplanet Pro (1.3.9) is compatible with the latest version of WooCommerce (3.0.5) and has the updated template files.

    Yazmin
    Keymaster

    a: 1: {s: 18: “custom_css_post_id”; i: -1;}

    This is how WordPress core stores this value in the database for all themes, not just Exoplanet.

    for example in the options table (usually ‘wp_options’ but I see yours is named ‘soa_options’ as you are using ‘soa’ as the prefix), if you look at the Twenty Seventeen or Twenty Sixteen theme mods you will see that they are the same:
    SELECT * FROM soa_options WHERE option_name = 'theme_mods_twentyseventeen' OR option_name = 'theme_mods_twentysixteen'
    run the above SQL query and you will see that these themes also contain a: 1: {s: 18: “custom_css_post_id”; i: -1;}

    If you switch theme to Twenty Sixteen do you still see the same error?
    Can you take a screenshot of your screen where you are seeing ‘exoplanet requests for the settings’ please?
    You can upload images here in your posts.

    Yazmin
    Keymaster

    OK so the 4 footer columns.

    for each column use this CSS

    .footer.footer1 {
        text-align: center;
    }

    change the 1 for either 2, 3 or 4 as appropriate.

    or if you want all columns center aligned it would be

    .footer {
        text-align: center;
    }

    but note that if you are using a plugin to generate content within the footer area, the plugin may have its own CSS styles which could determine the text alignment for the plugin content. If that is the case you would need to find the appropriate CSS class or ID for that plugin.

    • This reply was modified 7 years ago by Yazmin.
Viewing 15 posts - 151 through 165 (of 173 total)