Forum Replies Created

Viewing 20 posts - 4,721 through 4,740 (of 4,908 total)
  • Author
    Posts
  • in reply to: Homepage Headline Options #83061
    Mahesh
    Participant

    Hi @benowchiro,

    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    /* Homepage Headline Text Color and Background Color. */
    #homepage-message {
        background-color: #444;
        color: #fff;
    }
    
    /* Homepage Headline Button Background Color. */
    #homepage-message .right-section a {
        background-color: #ff0000;
    }
    
    /* Homepage Headline Button Hover Background Color. */
    #homepage-message .right-section a:hover {
        background-color: #00ff00;
    }

    Regards,
    Mahesh

    in reply to: Promotion Headliner Button #83060
    Mahesh
    Participant

    Hi @SarahNeeve,

    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #promotion-message .right .promotion-button:hover{
        background-color: #ff0000;
        border-color: #0000ff;
    }

    Note: Please change the background-color and border-color to your desired color’s hex value.

    Regards,
    Mahesh

    in reply to: Changing page title and content font #83059
    Mahesh
    Participant

    Hi @adunning,

    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    
    /* For Page Title */
    #content .page .entry-title{
        font-weight: bold;
        font-size: 20px;
        font-family: Times New Roman;
        font-style: italic;
    }
    
    /* For Post Title */
    #content .post .entry-title{
        font-weight: bold;
        font-size: 20px;
        font-family: Times New Roman;
        font-style: italic;
    }
    
    /* For Post Content */
    #content .post .entry-content{
        font-weight: bold;
        font-size: 15px;
        font-family: Times New Roman;
        font-style: italic;
    }
    
    /* For Post Content */
    #content .page .entry-content{
        font-weight: bold;
        font-size: 15px;
        font-family: Times New Roman;
        font-style: italic;
    }

    Note: Please change the CSS property’s value as per necessary.

    Regards,
    Mahesh

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

    Hi @shikarime,

    For this you have to create child theme, replicate the core function (Calendar Widget) and customize it. This is out of theme support scope so I recommend you to hire a customizer for this.

    Regards,
    Mahesh

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

    Hi @Mark Argentino,

    index.htm is not included in WordPress core files. And the shortcode will only work with the theme files no the static html pages.
    I haven’t faced such issues.
    The redirects may be because of the plugins, please try deactivating the plugins one by one. If the plugin is trust-worthy you won’t lose the settings.

    Let me know if I can help you further.

    Regards,
    Mahesh

    in reply to: Logo Banner #83054
    Mahesh
    Participant

    Hi @benowchiro,

    Thanks for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

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

    Hi @Paul,

    For this you have to create a child theme. You can find more details on how to create a child theme HERE. Then in your child theme’s functions.php add the following code.

    add_action( 'init' , 'catchkathmandu_child_move_menu_below_slider' );
    function catchkathmandu_child_move_menu_below_slider() {
            remove_action( 'catchkathmandu_hgroup_wrap', 'catchkathmandu_header_right', 15 );
    		add_action( 'catchkathmandu_before_main', 'catchkathmandu_header_right', 15 );
    }

    Then go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    #header-right {
        float: none;
    }

    Let me know if this fixes your issue.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #83050
    Mahesh
    Participant

    Hi @rflores,

    For the above code to work, you have to activate the child theme. After activating, you do not have to update the all the images. Please use Regenerate Thumbnail plugin to regenerate all the images with desired sized.

    Regards,
    Mahesh

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

    Hi @leotrim77,

    This feature is available in Catch Responsive Pro by default. But if you want to remove it anyway, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #site-generator {
        display: none;
    }

    If you prefer to completely remove it hard-coded, then you have to do it creating the child theme.

    Regards,
    Mahesh

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

    Hi @Michaela,

    The content’s style is out of theme scope. The style for content is as per how editor manages. As specified above, I tried the same with one more return/enter which puts   if you check it in code tab and is working fine.

    Regards,
    Mahesh

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

    Hi @witgi,

    Sorry for the late reply.
    I just checked your site, now I see only one menu in mobile view. But I think you’ve made some customization, the menu looks different than default.
    Let me know if you want to remove this hack. And the style.php file, have you created it for the hack?

    Regards,
    Mahesh

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

    Hi @Michaela,

    This is inside the content, so its a bit tricky as content can be anything. Either image or text, one more enter/return provides a space in-between and may do the trick fit for you.
    Please try it out and let me know.

    Regards,
    Mahesh

    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

Viewing 20 posts - 4,721 through 4,740 (of 4,908 total)