Forum Replies Created

Viewing 20 posts - 4,701 through 4,720 (of 4,908 total)
  • Author
    Posts
  • in reply to: Page not found – 404 response #83206
    Mahesh
    Participant

    Hi @Lars,

    I am a bit confused on what you’ve mentioned above. Do you mean to change below text for “http://energyfaculty.com/author/user” for your custom text.
    “Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.”
    If so, you have to create a child theme, please visit this LINK for more details on how to create child theme.
    Copy following files from Catch Flames Pro theme to the child theme.
    1. author.php
    2. archive.php

    Below code is for author.php:
    Replace this code
    <?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'catch-flames' ); ?>

    with this
    <?php _e( 'Your Custom Text', 'catch-flames' ); ?>

    Note: Replace “Your Custom Text” with your desired text.

    Make the same change for archive.php too.

    Regards,
    Mahesh

    in reply to: Footer height top and bottom #83201
    Mahesh
    Participant

    Hi @andrewf90,

    The above code seems fine, and we checked your site and the code is working fine.
    Let me know if we could help you further.

    Regards,
    Mahesh

    in reply to: Move primary menu below featured image #83200
    Mahesh
    Participant

    Hi @Paul,

    I replaced the functions.php of the child theme with yours and is working fine. I think you’ve made some other changes which is causing the problem. Please try by deactivating the plugins.

    Let me know if the issue persists.

    Regards,
    Mahesh

    in reply to: Padding #83199
    Mahesh
    Participant

    Hi @andrewf90,

    For the above changes, please use the following CSS:

    #comments {
        padding-left: 0;
    }

    Let me know if this helps.

    Regards,
    Mahesh

    in reply to: Double menu on mobile devices #83198
    Mahesh
    Participant

    Hi @witgi,

    We would gladly help you to overcome your issue but Catch Kathmandu doesn’t have style.php file and we’re not sure what changes you have made in the files. Can you share the file with us so that we can look through it.

    Regards,
    Mahesh

    in reply to: How do get of your ad… #83141
    Mahesh
    Participant

    Hi @Len,

    We currently have released Clean Journal Pro version 1.0, this feature will be available in version 1.1 which will be releasing soon.

    Regards,
    Mahesh

    in reply to: increasing width of post content? #83137
    Mahesh
    Participant

    Hi @shawn,

    For the above change, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    #main {
    	padding: 10px;
    }
    
    .homepage-feature {
    	width: 300px;
    }
    
    #primary {
    	width: 650px;
    }
    
    @media screen and (min-width: 991px) and (max-width: 1024px) {
    	#primary {
    		width: 610px;
    	}
    	.homepage-feature {
    		width: 280px;
    	}
    }
    
    @media screen and (min-width: 961px) and (max-width: 990px) {
    	#primary {
    		width: 560px;
    	}
    	.homepage-feature {
    		width: 255px;
    	}
    }
    
    @media screen and (max-width: 960px) {
    	#primary {
    		width: 698px;
    	}
    	.homepage-feature {
    		width: 324px;
    	}
    }
    
    @media screen and (max-width: 767px) {
    	#primary {
    		width: 100%;
    	}
    	.homepage-feature {
    		width: 45.5%;
    	}
    }
    
    @media screen and (max-width: 640px) {
    	.homepage-feature {
    		width: 100%;
    	}
    }
    
    @media screen and (max-width: 320px) {
    	#main {
    		padding: 10px 0 0;
    	}
    }

    Regards,
    Mahesh

    in reply to: Please Help Catch Responsive Website Width #83135
    Mahesh
    Participant

    Hi @leotrim77,

    I checked your site, and you have some “——–” in your Custom CSS which is causing the issue. Remove these and it will fix the issue.

    Regards,
    Mahesh

    in reply to: Padding #83134
    Mahesh
    Participant

    Hi @andrewf90,

    About the full-width, as long as the site seems to work normally in both desktop and other responsive views, it is okay to use it.

    And for bringing Header text and content closer to the edge of the pages, in your Custom CSS, change:

    .wrapper {
        width: 98%;
    }

    to

    .wrapper {
        width: 100%;
    }

    Let me know if fixes your issue.

    Regards,
    Mahesh

    in reply to: Language of days on calendar #83133
    Mahesh
    Participant

    Hi @shikarime,

    The text mentioned above are “footer-meta”, you can find it in catch-everest-pro/inc/template-tags.php‘s catcheverest_footer_meta function.
    You can override this function in the child theme.

    Let me know if I can help you further.

    Regards,
    Mahesh

    in reply to: How do get of your ad… #83132
    Mahesh
    Participant

    Hi @Len,

    For removing “This is Header Sidebar Widget Area”, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Header Top Options” and check “Check to disable header top” option.

    And for making bit.ly link active in text sidebar, you can use the html’s anchor tag like below.
    see <a href="http://bit.ly/207d30H" target="_blank">http://bit.ly/207d30H</a>

    Regards,
    Mahesh

    in reply to: How to centre header #83131
    Mahesh
    Participant

    Hi @Robert,

    Oh great, you figured it out. I can see its centered but still ads not displaying on mine.
    Have a nice day.

    Regards,
    Mahesh

    in reply to: Move primary menu below featured image #83130
    Mahesh
    Participant

    Hi @Paul,

    The code is working is fine with the child theme. Do you get any errors or something? Do you have other modifications?

    Please provide us with the functions.php of the child theme.

    Regards,
    Mahesh

    in reply to: How to set Fixed width on page #83081
    Mahesh
    Participant

    Hi @Aveesh,

    Catch Box Pro is a theme with boxed layout, the full-width for the page for all layout is 1000px whether the layout is full-with no sidebar or with sidebars.

    Regards,
    Mahesh

    in reply to: How to set Fixed width on page #83079
    Mahesh
    Participant

    Hi @Aveesh,

    If you are trying to make the content’s width to 1400px just for one page, I recommend you to use the Custom CSS instead. Like the code below:

    .page-id-630 .site{
        width: 1400px;
    }

    It will only make the site’s width to 1400px which is not enough, you have to also change the width of the inner contents per the new width and manage for responsive views too. I recommend you to hire a customizer.

    If you prefer to use the function as in the above code, edit your function as below:
    add_filter( ‘body_class’, ‘catchflames_child_more_body_classes’ );
    function catchflames_child_more_body_classes( $class ) {
    if ( is_page( 630 ) ) {
    $class[] = ‘fixed-width-page’;
    }
    return $class;
    }

    The above function will add “fixed-width-page” to body for that particular page only.

    Regards,
    Mahesh

    in reply to: How to set Fixed width on page #83072
    Mahesh
    Participant

    Hi @Aveesh,

    Please post in your site url.
    I assume you are using Catch Flames Pro. We do not have the file called page-fullwidth.php in Catch Flames Pro.

    For this you can use the Custom CSS and get the specific page’s body class and change the width of the the content with-in that very class.

    Or you can also add the desired body class by hooking a function into the body_class filter as follow:

    add_filter( 'body_class', 'catchflames_child_more_body_classes' );
    function catchflames_child_more_body_classes( $class ) {
        $class[] = 'fixed-width-page';
        return $class;
    }

    Note: Add the above code in child theme’s functions.php.

    Regards,
    Mahesh

    in reply to: Breadcrumb separator colour #83071
    Mahesh
    Participant

    Hi @TripleY,

    For changing color of the seperator, please use the following CSS.

    #breadcrumb-list a span.sep {
        color: #ff0000;
    }

    Regards,
    Mahesh

    in reply to: How to centre header #83070
    Mahesh
    Participant

    Hi @Robert,

    I checked your site, iframe is there in the code, but for some reasons I cannot see the ad, is there any problem.
    And where have you put the script for the iframe in the theme?

    Regards,
    Mahesh

    in reply to: Padding #83063
    Mahesh
    Participant

    Hi @andrewf90,

    There is no padding in the page, the grey space in the either side is the background which is seen because of the boxed layout of the theme. By default, the width of the content is set to 1200px.
    For reducing the padding around search box, you can add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box.
    .widget {
    padding-right: 0;
    }

    Let me know if I can help you further to this.

    Regards,
    Mahesh

    in reply to: How do get of your ad… #83062
    Mahesh
    Participant

    Hi @Len,

    Please post in your site url.

    Regards,
    Mahesh

Viewing 20 posts - 4,701 through 4,720 (of 4,908 total)