Forum Replies Created

Viewing 20 posts - 4,961 through 4,980 (of 12,027 total)
  • Author
    Posts
  • in reply to: Change menu font from uppercase to inherit #248545
    Skandha
    Participant

    @90kiwi: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #header-menu ul.menu a {
        text-transform: inherit !important;
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

    in reply to: Footer widget area on front-page only? #248541
    Skandha
    Participant

    @soundlocation: Hello there,I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/rock-star/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely
    appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.

    Kind Regards,
    Skandha

    in reply to: Footer widget area on front-page only? #248537
    Skandha
    Participant

    @soundlocation: Hello there,
    Can you try using the following CSS code for footer widget area 1?

    body:not(.home) #first {
    	display: none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Header hides post/page title #248536
    Skandha
    Participant

    @soundlocation: Hello there,
    Can you please post a screen shot so that I can have a clearer picture of the issue? You can use platforms like Dropbox or Google Drive and paste the link here.

    Kind Regards,
    Skandha

    in reply to: Front page SSL error(Mixed content) when using video #248534
    Skandha
    Participant

    @kemukemusan: Hello there,
    Can you please post in your site URL without translating or let me know the theme you are using?

    Kind Regards,
    Skandha

    in reply to: Change menu font from uppercase to inherit #248532
    Skandha
    Participant

    @90kiwi: Hello there,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Installed version differant from support documentation #248531
    Skandha
    Participant

    @linda1997: Hello Linda,
    The Font Family Option is only available in pro version of the theme. I suggest you to upgrade to pro. You can check out the additional-features available in pro version of the theme.

    Kind Regards,
    Skandha

    in reply to: Footer widget area on front-page only? #248530
    Skandha
    Participant

    @soundlocation: Hello there,
    Is the CSS Code not working for footer one? I tried the CSS Code at my end and all the footer widget are are hidden on all pages excerpt homepage.

    Kind Regards,
    Skandha

    in reply to: Footer widget area on front-page only? #248510
    Skandha
    Participant

    @soundlocation: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To display footer area 1 only on homepage */
    body:not(.home) .footer-widget-1 {
    	display: none;
    }
    
    /* To display footer area 2 only on homepage */
    body:not(.home) .footer-widget-2 {
    	display: none;
    }
    
    /* To display footer area 3 only on homepage */
    body:not(.home) .footer-widget-3 {
    	display: none;
    }
    
    /* To display footer area 4 only on homepage */
    body:not(.home) .footer-widget-4 {
    	display: none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Header hides post/page title #248507
    Skandha
    Participant

    @soundlocation: Hello there,
    I will need to look into your site to debug the issue. Please post in your site URL.

    Kind Regards,
    Skandha

    in reply to: Footer widget area on front-page only? #248506
    Skandha
    Participant

    @soundlocation: Hello there,
    Yes that is possible. Please post in your site URL and let me know which widget area you are referring to.

    Kind Regards,
    Skandha

    in reply to: Header categories #248467
    Skandha
    Participant

    @sygy88: Hello there,
    The update has already been released. Please update the theme and let me know if the issue is resolved.

    Kind Regards,
    Skandha

    in reply to: Menu Button, custom and resizing Header Media logo #248466
    Skandha
    Participant

    @loare: Hello Sam,
    Go to => Appearance => Customize => Additional CSS add the following CSS Code.

    .custom-header-overlay {
        background-color: unset;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Menu Button, custom and resizing Header Media logo #248460
    Skandha
    Participant

    @loare: Hello Sam,
    To have a max-width for Header Media Logo on desktop
    Go to => Appearance => Customize => Additional CSS add the following CSS Code.

    @media screen and (min-width: 1200px) {
    	.site-header-logo img {
    	    max-width: 500px;
    	}
    }

    You can change the min-width to decide from which dimension the CSS Code be applied. You can alter the max-width according to your choice as well.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Setting DEFAULT New Post font color #248439
    Skandha
    Participant

    @btcbtc: Hello there,
    I have just sent you an email on your registered catch themes account email address. If you don’t find the mail in your inbox please check the spam folder as well.

    Kind Regards,
    Skandha

    in reply to: Enable sound on Youtube Video added as Header Video #248437
    Skandha
    Participant

    @mohammad-afshari: Hello Mohammad,

    1. I checked your site on my phone and it seems to be loading fine. Can you try other browsers on your phone and check if the same thing happens?

    2. I will look into this issue and get back to you soon.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @daoudou: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/catch-flames/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely
    appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Menu Button, custom and resizing Header Media logo #248396
    Skandha
    Participant

    @loare: Hello there,
    Go to => Appearance => Customize => Additional CSS add the following CSS Code instead of the code you have added.
    /* To center the menu on desktop */

    @media screen and (min-width: 1200px) {
    	.site-header-menu {
    		margin: 0 auto;
    	}
    }
    @media screen and (max-width: 1200px) {
    	.site-header-menu {
    		width:100%;
    	}
    }

    The header media logo seems to look fine on both mobile and desktop screens without altering it with CSS Code.

    It is not possible to have different header media logo on different pages. If you really need it I suggest you to hire a customizer to get it done.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: Inserting Ad Banner between Menu and Slider #248388
    Skandha
    Participant

    @tattoo-tom: Hello there,
    Sorry for the late reply. Are you using a child theme? You will need to use a child theme to have the banner between the menu and slider.

    Kind Regards,
    Skandha

    in reply to: Menu always in collapsed position #248383
    Skandha
    Participant

    @filmorchesterzh: Hello Pascal,
    For that
    Go to => Appearance => Customize => Theme Options => Menu Options => Menu Type => Select Classic and Publish.

    Let me know if this is what you want!
    Kind Regards,
    Skandha

Viewing 20 posts - 4,961 through 4,980 (of 12,027 total)