Forum Replies Created

Viewing 20 posts - 4,741 through 4,760 (of 4,916 total)
  • Author
    Posts
  • in reply to: How to get space inbetween paragraphs #82859
    Mahesh
    Participant

    Hi @Michaela,

    Please use the following CSS for changes in entire site:

    .aligncenter.wp-image-6123.size-full {
        margin-bottom: 25px;
    }

    Regards,
    Mahesh

    in reply to: Redirect loop on home page since last update #82854
    Mahesh
    Participant

    Hi @Mark Argentino,

    Did you get the error only after theme update? Its kind of surprising. The theme files doesn’t contains the .htaccess file. It comes with default WordPress core installation. The theme update only change the file within that very theme scope and nothing beyond that. May be it is causing because of the .htacces.
    I recommend you to contact the server of the issue.

    Regards,
    Mahesh

    in reply to: Navigation Bar Color and Featured Image #82853
    Mahesh
    Participant

    Hi @prateek04,

    Sorry, but this support forum is for the themes from Catch Themes only.

    Regards,
    Mahesh

    in reply to: Logo Banner #82852
    Mahesh
    Participant

    Hi @benowchiro,

    For so please go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    #header-left, #header-right{
    	width: 100%;
    }
    
    #menu-header-menu{
    	float: left;
    }
    
    .header-sidebar .widget{
    	clear: none;
    }
    
    .header-sidebar #nav_menu-2 {
        float: left;
    }
    
    #site-logo {
        text-align: center;
        float: none;
        display: block;
    }
    
    #hgroup-wrap #site-logo img {
        display: inline-block;
    }

    Regards,
    Mahesh

    in reply to: Smaller border/margin on mobile devices #82851
    Mahesh
    Participant

    Hi @pips,

    Can you please clarify on the above with screen shot (if possible). I don’t quite get where you want smaller padding, margin or border. The content doesn’t have any border, margin or padding. The grey color in left and right is the background color and since the content’s width is small it will automatically centered.

    Regards,
    Mahesh

    in reply to: Top Navigation Menu Broken #82849
    Mahesh
    Participant

    Hi @sbartsch,

    Oh that’s great. You fixed your issue yourself.
    Have a nice day!

    Regards,
    Mahesh

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

    Hi @witgi,

    It seems you’re using Catch Kathmandu Free version, and you are posting support for Catch Adaptive Pro.
    How did you hide the primary menu? Your site’s source is compressed so I cannot see anything properly.

    I have checked the same in Catch Kathmandu Free version and is working fine. May be your small hack is creating this issue.

    Regards,
    Mahesh

    in reply to: Suppress entry-header for a single page #82846
    Mahesh
    Participant

    Hi @FortWayneATA,

    To hide page title please use the following CSS. You can either put in it style.css or go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box.
    Assuming your page ID is 730, using the same class as mentioned above.
    .page-id-730 .entry-header{
    display: none;
    }

    Hope this fixes your issue, if not please let me know and please post in your site url.

    Regards,
    Mahesh

    in reply to: change color subheadline text #82845
    Mahesh
    Participant

    Hi @[email protected],

    The footer color is working fine, I think may you mean to change the color of the text “Discover Your Dreams at My Dream Life” in the footer widget. For this add the following CSS.

    #text-3.widget.widget_text {
        color: #6b3089;
    }

    Let me know if this fixes your issue.

    Regards,
    Mahesh

    in reply to: Color changes not reflecting on responsive front page #82844
    Mahesh
    Participant

    Hi @[email protected],

    Oh that’s great. Have a nice day!

    Regards,
    Mahesh

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

    Hi @leotrim77,

    To make only header and menu bar full width, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    div#page {
        width: auto;
    }
    
    #content {
    	width: 1200px;
    	margin: 0 auto;
    }
    
    @media screen and (max-width: 1280px) {
    	#content {
    	    width: 1100px;
    	}
    }
    
    @media screen and (max-width: 1152px) {
    	#content {
    	    width: 1040px;
    	}
    }
    
    @media screen and (max-width: 1100px) {
    	#content {
    	    width: 960px;
    	}
    }
    
    @media screen and (max-width: 990px) {
    	#content {
    	    width: 740px;
    	}
    }
    
    @media screen and (max-width: 767px) {
    	#content {
    	    width: 660px;
    	}
    }
    
    @media screen and (max-width: 700px) {
    	#content {
    	    width: 560px;
    	}
    }
    
    @media screen and (max-width: 600px) {
    	#content {
    	    width: 520px;
    	}
    }
    
    @media screen and (max-width: 540px) {
    	#content {
    	    width: 460px;
    	}
    }
    
    @media screen and (max-width: 480px) {
    	#content {
    	    width: 380px;
    	}
    }
    
    @media screen and (max-width: 400px) {
    	#content {
    	    width: 320px;
    	}
    }
    
    @media screen and (max-width: 319px) {
    	#content {
    	    width: 100%;
    	}
    }

    Note: For this please make sure you have removed all the CSS from Custom CSS that defines width for #main and .site divs.

    Regards,
    Mahesh

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

    Hi @Paul,

    Please post in you site url.

    Regards,
    Mahesh

    in reply to: WP-PageNavi does not work anymore #82841
    Mahesh
    Participant

    Hi @EirikurVa,

    The issue may be due to permalinks setting. Go to Settings=> Permalinks and use default setting i.e. “Plain” and check it again.

    If the problem still persists, please try changing to the core WordPress theme e.g. tweentyfifteen and check if the WP-pagenavi is working properly. If the problem stays same with core theme too, it is not a theme issue.

    Let me know if this solves your issue.

    Regards,
    Mahesh

    in reply to: How to get space inbetween paragraphs #82840
    Mahesh
    Participant

    Hi @Michaela,

    You can achieve this with custom CSS. Please go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    .post-215 .aligncenter.wp-image-6123.size-full {
        margin-bottom: 25px;
    }

    Note: Please adjust the margin-bottom value as per required.

    Regards,
    Mahesh

    in reply to: How to get space inbetween paragraphs #82789
    Mahesh
    Participant

    Hi @Michaela,

    I wish to help you but I don’t understand the scenario here. Can you please clarify if more with an image and where actually in your site you want to make the change.

    Regards,
    Mahesh

    in reply to: Mobile view not working correctly #82787
    Mahesh
    Participant

    Hi @Dan,

    The menu is there, but because of the black background, it seems to be invisible. If you click on the upper left corner, the menu will slide in from right. I recommend you to change the color for the menu button. For that, go to “Dashboard=> Appearance=> Theme Options=> Color Options=> Menu Color Options” and scroll down to “Mobile Menu Color Options” and select white color for “Menu Hamburger Open Color” and “Menu Close Color”.
    “Menu Hamburger Open Color” is for menu icon, and “Menu Close Color” is for icon to close menu.

    Hope this helps.

    Regards,
    Mahesh

    in reply to: adding a string to a post title in the archive #82784
    Mahesh
    Participant

    Hi @radeko

    Thank you for your appreciation.

    Regards,
    Mahesh

    in reply to: change color subheadline text #82783
    Mahesh
    Participant

    Hi @[email protected],

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: search box compatible with bbPress #82782
    Mahesh
    Participant

    Hi @andrewf90

    This is beyond theme support scope, please contact bbpress support forum.

    Regards,
    Mahesh

    in reply to: Remove Malicious Code in Catchbox Pro Files #82781
    Mahesh
    Participant

    Hi @Adam,

    It seems your site has been hacked. Please completely reinstall the WordPress, themes and plugins.
    As mentioned above in the infected files list, the theme doesn’t have the file called css.php and function.php may be compromised too.

    Let me know if re-installation fixes your issue.

    Regards,
    Mahesh

Viewing 20 posts - 4,741 through 4,760 (of 4,916 total)