Forum Replies Created

Viewing 20 posts - 3,041 through 3,060 (of 4,908 total)
  • Author
    Posts
  • in reply to: 2 of my Main Menu tabs show Blog Sidebar #97230
    Mahesh
    Participant

    @kuczekross: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Large website #97228
    Mahesh
    Participant

    @mayapour: Catch Responsive is a boxed layout theme. So the page width in the theme is set to 1200px. For full-width slider, I recommend you to use our other themes like Full Frame, Adventurous, Catch Adaptive etc.
    If you want to make the whole site full-width, you can do it with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .site {
        width: 100%;
    }
    
    #feature-slider .cycle-slideshow {
        max-width: none;
    }

    Note: Please use large images.

    Regards,
    Mahesh

    in reply to: Make content area wider, right sidebar narrower #97226
    Mahesh
    Participant

    @catwingz: The problem is because the editor’s content width is defined by the theme so that is match the actual content width of the site. You have now customized the theme by increasing the content width through custom CSS. But the width of editor’s content stayed the same and caused the issue. If you would like to do this level of customization. I recommend you to use the child theme. You can find more details on creating child theme HERE then add the CSS to child theme’s style.css
    And for the editor’s content width, copy editor-style.css file to your child theme and edit and change line 7 to max-width: 860px;
    so it would look like following:

    html .mceContentBody {
        max-width: 860px;
    }

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Problem with Featured Content Layout #97225
    Mahesh
    Participant

    @wendy: There are some empty <a> tags there, which is causing the problem. I don’t know where is it coming from in your site. I checked the theme in our sever and had no such issue. Are you using any plugins? If so, try disabling the plugins one by one and check if it resolves the issue.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Activate Comments for static page #97224
    Mahesh
    Participant

    @sarahf: For displaying blog on static pages, you’ll need to customize a theme a bit. So please use a child theme. You can find more details on creating child theme HERE. Then in your child theme, create front-page.php file and paste the code from the link below:
    http://bit.ly/2aTlONc

    *Remove the “footer” of the blog saying “this blog post was published in uncategorized by (author) permalink”
    -> Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #content footer.entry-meta {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Remove the date #97220
    Mahesh
    Participant

    @hedibelkhodja: Thank you for your appreciation. Have nice day!

    Regards,
    Mahesh

    in reply to: Activate Comments for static page #97137
    Mahesh
    Participant

    @sarahf: Do you mean to show comment section for blog in the front page? Can you please clarify more.

    For showing whole post without Read More link, go to Dashboard=> Appearance=> Customize=> Theme Options=> Content layout and select Show full content option. And for hiding author and date of blog, you can use Custom CSS, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .entry-header .entry-meta {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: "Save and Pubish" doesn't work #97135
    Mahesh
    Participant

    @hosefkuhnt: I checked you site and Custom CSS Manager plugin was causing the issue. I deactivated the plugin and try to save the Settings (Promotion Headline) in Customizer and it worked just fine. For now I have re-activated the plugin so your site will be as it is. Please disable that plugin and try for yourself.

    Regards,
    Mahesh

    in reply to: Remove header search box? #97134
    Mahesh
    Participant

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

    #header-right-search {
        display: none;
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    @larsaengenvoort: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Remove or edit footer text #97132
    Mahesh
    Participant

    @ellie: Thank you for your appreciation. Have nice day!

    Regards,
    Mahesh

    in reply to: Remove header search box? #97127
    Mahesh
    Participant

    @griffith: Yes, it can be done.
    Hi Jim,

    1. Disable Search box:
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Header Right Sidebar Options and check Check to disable Header Right Sidebar option.

    2. Disable Magnifying glass:
    Go to Dashboard=> Appearance=> Customize=> Menu Options and check Check to disable search box in Primary Menu option.

    Regards,
    Mahesh

    Mahesh
    Participant

    @laraengenvoort:
    Hi Lars,

    1. Static page (home) with 5 recent posts:
    If just sidebar is the problem, you can change the layout and use no-sidebar layout. For that, go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select No Sidebar (Full Width) option in Default Layout drop-down and click Save & Publish.

    2. Make the blank space between slider and content disappear:
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider {
        padding-bottom: 0;
    }

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #97124
    Mahesh
    Participant

    @go2sopot-pl: Did you follow the instructions as in video? Should have updated fine. In that case, you’ll need to manually delete the theme from FTP and uploaded the new one.

    Regards,
    Mahesh

    in reply to: Remove or edit footer text #97104
    Mahesh
    Participant

    @ellie: There is no option to remove footer info in Fabulous Fluid Free theme. So, consider upgrading to pro version, where you have option to edit/remove that info from Appearance => Customize => Theme Options => Footer Editor Options.
    But if Free version, you can use Custom CSS to hide that info from display. If so, then you can add the following css in Appearance=> Customize=> Theme Options=> Custom CSS

    #site-details .theme-name, 
    #site-details .theme-author {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Problem with Featured Content Layout #97103
    Mahesh
    Participant

    @wendy: Have you modified/made any customization in the theme? There are empty <a> tags in Featured Content. If you do have modified the code, please revert it and check again.
    I checked on our server, and it is working fine.

    Regards,
    Mahesh

    in reply to: Remove the date #97101
    Mahesh
    Participant

    @hedibelkhodja: Thank you for your appreciation. If you do want to customize the code, it is strongly recommended to use child theme because whenever you update the theme, all you customization will be lost. You can find more details on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: Sidebar Widget Padding #97100
    Mahesh
    Participant

    @scoop: Thank you for your appreciation. If you like my support and Adventurous theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/adventurous?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Sidebar spacing of widgets and header image movement #97099
    Mahesh
    Participant

    @scoop: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Promotion headline add HTML form code #97098
    Mahesh
    Participant

    @advisecincinnati:
    Hi Brain,

    If that’s the case, you can add html into the Promotion Headline as it already uses wp_kses_post sanitize. So you don’t need to customize further just for that.

    Regards,
    Mahesh

Viewing 20 posts - 3,041 through 3,060 (of 4,908 total)