Forum Replies Created

Viewing 15 posts - 1,936 through 1,950 (of 8,657 total)
  • Author
    Posts
  • in reply to: Header image instead of featured image #105785
    wensolutions
    Keymaster

    Hello,

    If you want to remove the header image from the single page then you can add below given CSS.

    div#page-site-header {
        background-image: unset !important;
    }

    So, you do not need to remove the featured image and the image from here will be displayed in the other section of the front page.

    Hope this helps.

    Thank you.

    in reply to: Blurry icons in heading #105778
    wensolutions
    Keymaster

    Hello

    Please add the below given CSS in the Additional CSS section :

    .mediclean_widget_social ul li a::before {
        text-shadow: none;
    }

    Hope this clears your confusion.

    Feel free to reach us for any further query/confusion.

    Regards!

    wensolutions
    Keymaster

    Hello

    Can you please provide us with your site URL and the screenshot of the section that you are referring to s that we can provide you with a prompt response ?

    Regards!

    in reply to: Blurry icons in heading #105719
    wensolutions
    Keymaster

    Hello

    Please add the below given CSS by going to Admin Panel > Appearance > Customize > Additional CSS

    #quick-contact li::before {
        text-shadow : none;
    }

    Hope this helps

    Feel free to reach us for any further query/confusion.

    Regards!

    wensolutions
    Keymaster

    Hello,

    The CSS in the additional CSS will not disappear even after updating the theme. You can also paste the CSS in your child theme style file as well.

    But make sure the CSS is not added in the parent theme directly as all the CSS will be lost upon update.

    Thank you.

    wensolutions
    Keymaster

    Hello

    Glad that issue is now resolved.

    Feel free to reach us for any further query/confusion.

    Regards!

    in reply to: Change colours #105689
    wensolutions
    Keymaster

    Hello

    To change the colors of the sections that you have mentioned, please add the below given CSS in the Additional CSS section by going to Admin Panel > Appearance > Customize > Additional CSS

    a:hover {
        color: #151515 !important;
    }
    
    .btn-primary {
        background-color: #0a0a0a !important;
    }
    
    .btn-default {
        border-color: #272422 !important;
        color: #0c0c0c !important;
    }
    
    .btn-default:hover {
        border-color: #1f1e1e !important;
        background-color: #000000 !important;
        color: #232121 !important;
    }

    Please change the color code of the given CSS as per your requirement.

    Hope this helps

    Feel free to reach us for any further query/confusion.

    Regards!

    in reply to: Header image instead of featured image #105687
    wensolutions
    Keymaster

    Hello @amroth,

    Please remove the featured image from the page edit screen and doing so will display the image added in the Header image section by going to Admin Panel > Appearance > Header Image.

    Hope this helps.

    Thank you.

    in reply to: Demo Content Broke Site #105686
    wensolutions
    Keymaster

    Hello,

    Glad that you figure out the issue by yourself.

    If you have any issues further then kindly let us know.

    Thank you.

    in reply to: Changing font sizes. #105685
    wensolutions
    Keymaster

    Hello @amroth,

    Currently, there is no option to change the font size and as much as we would love to help you with this, we are unable to do so as it requires higher code customization.

    However, we will note it as the requested feature and will include them in the future updates.

    Also, if you want to increase the size of some particular section then we can help you with the custom CSS so please let us know.

    Thank you.

    in reply to: Customise and add individual header images on pages #105684
    wensolutions
    Keymaster

    Hello

    To add the individual image in the page, please add the featured image in the page edit section which will show up in the page as a header image.

    Screenshot : https://prnt.sc/p3lbdf

    Also you can edit the existing settings of the image display options from the bottom of the page edit screen.

    Screenshot : https://prnt.sc/p3lbmj

    Hope this helps

    Feel free to reach us for any further query/confusion.

    Regards!

    wensolutions
    Keymaster

    Hello @hchtis,

    Thank you for using the theme.

    To remove the category you need to go through the child theme.

    After activating the child theme in your child theme functions.php file add below given code:

    function tourable_pro_child_custom_cat_title_removal ($title) {
    
        if ( is_category() ) {
    
                $title = single_cat_title( '', false );
    
            } elseif ( is_tag() ) {
    
                $title = single_tag_title( '', false );
    
            } elseif ( is_author() ) {
    
                $title = '<span class="vcard">' . get_the_author() . '</span>' ;
    
            } elseif ( is_archive() ) {
    
            	$title = preg_replace('/^\w+: /', '', $title);
    
            }
    
        return $title;
    
    }
    
    add_filter( 'get_the_archive_title', 'tourable_pro_child_custom_cat_title_removal);

    Hope this helps.

    Thank you

    in reply to: Popular post ribbon and gallery are posting same pictures #105682
    wensolutions
    Keymaster

    Hello

    The issue that you have reported is most likely due to the conflict of the theme with the third party plugins. Please verify the issue by deactivating all the third party plugins.

    Also, if this doesn’t help, please provide us with your site URL so that we can inspect the issue further ?

    Best Regards!

    wensolutions
    Keymaster

    Hello.

    When we inspected your site URL, we did not find any grey line as you can see in the screenshot below:

    https://prnt.sc/p3l4wu

    So can you please provide the screenshot of the issue so that we can help you further?

    Thank You.

    in reply to: Elementor compatibility #105498
    wensolutions
    Keymaster

    Hello

    Since Elementor is a third party plugin for the theme, it is not well tested. However, a lot of user have been using the page builder with the theme and they have not reported any blocking issues.

    Therefore, you can continue with the plugin. For any design issues, you can kindly write to us so that we can assist you further.

    Regards!

Viewing 15 posts - 1,936 through 1,950 (of 8,657 total)