Forum Replies Created

Viewing 20 posts - 9,421 through 9,440 (of 12,014 total)
  • Author
    Posts
  • in reply to: Customizing the footer #163035
    Skandha
    Member

    @nomade-2018: Go to => Child Theme Folder => functions.php add the following Code.

    function unwanted_transient () {
    	delete_trasient('catchresponsive_footer_content');
    }

    Let me know if this solves the [the-year] issue.
    Kind Regards,
    Skandha

    in reply to: change 'Stick to the Front Page' behavior #163033
    Skandha
    Member

    @erich74: 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. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: How to use the Essential Content Types Pro plugin #163028
    Skandha
    Member

    @elliottrae:
    1. To put “Latest Posts” as title above Latest Posts
    Copy content.php file from you parent theme folder to your child theme folder.
    Now, edit the file and add the following code after <div class="archive-post-wrap">
    <h2 class="section-title">Latest Posts/h2>

    2. To reduce the number of latest posts to 4
    Go to => Dashboard => Settings => Reading => Blog pages show at most => Select 4

    3. I’m afraid a lot of customization is need to bring the primary sidebar alongside the Featured Posts. If you really need this I suggest you to hire a customizer.

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

    in reply to: Upgrade from Decree Free to Decree Pro #163011
    Skandha
    Member

    @gparisot: 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/decree/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: Mobile Menu bar not showing up #163010
    Skandha
    Member

    @crowley: Let me know if you have anymore issues. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Title and Tagline Disappearing #163009
    Skandha
    Member

    @bobgarretthomenetworks-co-uk: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (max-width:561px) {
    	#hgroup.logo-enable.logo-left p {
    		font-size:10px;
    	}
    }
    #hgroup.logo-enable {
    	display:block !important;
    }

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

    in reply to: Promotion Headline Font Size, Padding, and Button Location #163008
    Skandha
    Member

    @jamietallman: Replace the above code I provided you by the following.

    @media screen and (min-width:767px) {
    	/* To change the font size of Promotion Headline */
    	#promotion-message .section.left h2 {
    		font-size:25px;
    	}
    
    	/* To change the font size of Promotion Sub Headline */
    	#promotion-message .section.left p {
    		font-size:10px;
    	}
    
    	/* To change the position of Promotion Headline Text and button */
    	#promotion-message .left {
    		float:none;
    	}
    	#promotion-message .wrapper {
    		display: -webkit-box;
    		display: -ms-flexbox;
    		display: flex;
    	}
    	#promotion-message .left {
    		order:2;
    		text-align:center;
    	}
    	#promotion-message .right a {
    		margin:0;
    	}
    	#promotion-message .section {
    		padding:10px;
    	}
    }

    To change background color of Promotion Headline
    Go to => Appearance => Customize => Color Options => Promotion Headline Color Options => Change Background Color

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

    in reply to: Need help #163005
    Skandha
    Member

    @darlingvalls: The doesn’t seem to be visible as it over the slider image and color is grayish.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #header-left-menu {
        color:#fff;
    }

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

    in reply to: Sidebar slides out of position #163003
    Skandha
    Member

    @aip: There seems to a bug with the theme. The issue will be fixed and an update will be released very soon.
    I will let you know when the update is released. Thank you for reporting us the bug.

    Kind Regards,
    Skandha

    in reply to: Site description panel divin #163001
    Skandha
    Member

    @redheadanna: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    body:not(.home) .site-description {
         display:none;
    }

    Let me know if this does the trick!
    Kind Regards,
    Skandha

    in reply to: How to center the Logo? #163000
    Skandha
    Member

    @becky7852: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
    1.

    /* To center the logo */
    .site-branding {
    	position:absolute;
    	left:50%;
    	transform:translateX(-50%);
    }

    2. The search box is appearing down below the drop down menu because you are using Menu Type as Default
    To change this Go to => Appearance => Customize => Theme Options => Menu Options => Menu Type => Classic

    3.

    To change the height of Header Image 
    .custom-header-content {
    	padding:300px 120px !important;
    }

    You can change the padding to alter the height of the image.

    4: The font seems to be changing on live preview at my end. Can you let me know which version of the theme you are using.

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

    in reply to: Gutenberg paragraph block in Catch Box 4.8.1 editor #162964
    Skandha
    Member

    @naoko-kaku: I will check what can be done and get back to you on this.

    Kind Regards,
    Skandha

    in reply to: My Music Band Pro Inquiry #162963
    Skandha
    Member

    @blakey0320: Hello there,
    Yes it is possible to create a landing and have three categories in it. That can be done with a single domain.

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

    in reply to: change 'Stick to the Front Page' behavior #162920
    Skandha
    Member

    @erich74: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .sticky-post {
    	visibility:hidden;
    	left:0;
    }
    .sticky-post:before {
    	visibility:visible;
    	content:'\f308';
    	font-family:Genericons;
    }

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

    in reply to: Customizing the footer #162919
    Skandha
    Member

    @nomade-2018: Hello Patrick,
    [the-year] seem to be showing up well at my end. I will look into your site so that I can look into the issue.
    For that I will need your admin credentials. I will contact you shortly by email!

    Kind Regards,
    Skandha

    in reply to: Year doesn't show in the footer #162917
    Skandha
    Member

    @nomade-2018: You seem to be using a child theme. Did you change the footer text code? Does the date show up when you switch your site language to English?

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

    in reply to: Catch Gallery – how to get tiled mosaic? #162916
    Skandha
    Member

    @mateo: After creating gallery you can choose the layout of your images on right corner under “Gallery Settings => Type”Choose Tiled Mosaic” then click on “Update Gallery“.
    This should change your Gallery Images to Tiled Mosaic.

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

    in reply to: GET http://0.0.0.1/ net::ERR_ADDRESS_UNREACHABLE #162915
    Skandha
    Member

    @halfdiminished: This seems to be a bug in the theme. The bug will be fixed and a theme update will be released very soon. I will let you know when the update is released.

    Kind Regards,
    Skandha

    in reply to: Add picture to a Portfolio Category #162914
    Skandha
    Member

    @bohvidt: I will look into the issue and get back to you soon on this.

    Kind Regards,
    Skandha

    in reply to: display forms in featured content #162911
    Skandha
    Member

    @vgtrierland: For this you will need to create a child theme and do a bit of customization. Let me know if you are familiar with child theme customization so that I can help you out!

    Kind Regards,
    Skandha

Viewing 20 posts - 9,421 through 9,440 (of 12,014 total)