Forum Replies Created

Viewing 20 posts - 3,061 through 3,080 (of 4,903 total)
  • Author
    Posts
  • in reply to: accentuation #97038
    Mahesh
    Participant

    @macorsini: Please post in your site url.

    Regards,
    Mahesh

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

    @josefkuhnt:
    Hi Josef, I checked for the issue in our server and all worked just fine. Are you any plugins? If yes, please try disabling it and check if it resolves the issue. Let me know if the problem persist, we’ll contact you through email.

    Regards,
    Mahesh

    in reply to: Edit default 'subtitle' in blog post #97036
    Mahesh
    Participant

    @janolof: This is WordPress by default functionality. That displays about number of comments for the blog. If you simply want to hide it, it can be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #comments .comments-title {
        display: none;
    }

    But if you want to get rid of it, you’ll need to create a child theme. You can find more about creating child theme HERE. Then override comments.php file.

    Regards,
    Mahesh

    in reply to: Problems adding links to other web pages #97035
    Mahesh
    Participant

    @helpme: Please try disabling plugins if you are using any and check again. If that didn’t help either then there is some issue in your WordPress Core. Please try reinstalling the fresh copy of WordPress and try again.

    Regards,
    Mahesh

    in reply to: Sidebar Widget Padding #97034
    Mahesh
    Participant

    @scoop: Please use the following CSS instead. I tested this one on your site.

    #secondary .widget {
        margin-bottom: 15px;
        padding: 10px 30px;
    }

    Regards,
    Mahesh

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

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

    Regards,
    Mahesh

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

    @scoop: For moving the image to the left, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #header-featured-image {
        margin: 0 auto;
        max-width: 1160px;
    }
    
    #header-featured-image img {
        margin: 0;
    }

    Regards,
    Mahesh

    in reply to: Remove sidebar from category posts page #97031
    Mahesh
    Participant

    @janetwad:
    Hi Janet,

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

    Regards,
    Mahesh

    in reply to: Remove the date #97006
    Mahesh
    Participant

    @hedibelkhodja:
    Hi Belkhodja,

    This can be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #main .entry-header .posted-on {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Make "featured content" Categories rather than pages #97005
    Mahesh
    Participant

    @maxxbogner1988: This option is already available in Full Frame Pro. Go to Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Options and select Featured Category Content in Select Content Type. Then scroll down and select the desired category/categories you want to display in as Featured Content. Then click Save & Publish.

    I don’t understand this one:
    Or another option would be to be able to have my posts go to multiple pages.

    Let me know further.

    Regards,
    Mahesh

    in reply to: Size of header image #97004
    Mahesh
    Participant

    @compyfox: Okay, I just checked you site and I found the problem, you are having. The image is still 1680×720. The theme uses header image as background image and has some padding given to it. Plus the content within the Header Image options (Title, Content and Button) affects the height of the Featured Header and so as the Header Image itself. The problem in your case is, you have removed the content so the content height is zero. And only padding is there. That is why the div’s height is small and the image seemed to be cropped.
    As you put the content in the Header Image, it will seem exactly as the demo.
    Hope this helps. Let me know further.

    Regards,
    Mahesh

    in reply to: Problems adding links to other web pages #97003
    Mahesh
    Participant

    @helpme: Yes you can switch back to this theme again anytime. It won’t affect pages layout. Just switch the theme and do a quick check on the issue exist on the other theme too. Then you can switch back to the current theme again.

    Regards,
    Mahesh

    in reply to: Remove sidebar from category posts page #97002
    Mahesh
    Participant

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

    .archive.category-latest-news #primary {
        width: 100%;
    }
    
    .archive.category-latest-news #secondary {
        display: none;
    }

    Regards,
    Mahesh

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

    @scoop: I’ve answered this one in the other thread. https://catchthemes.com/support-forum/topic/sidebar-widget-padding/#post-96979
    Please do not post same thing twice.
    Please post in your site url so I could help you further.

    Regards,
    Mahesh

    in reply to: stop scrolling on header and main nav #96984
    Mahesh
    Participant

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

    @media screen and (min-width: 941px) {
        #branding {
            position: fixed;
            z-index: 10;
            margin: 0 auto;
            left: 0;
            right: 0;
        }
    
        #header-menu {
    	position: fixed;
    	z-index: 5;
            margin: 0 auto;
            left: 0;
            right: 0;
        }
        #main-wrapper {
            margin-top: 57px;
        }
    }

    Regards,
    Mahesh

    in reply to: issues mobile menu #96980
    Mahesh
    Participant

    @luci1708:
    Hi Luci,

    Just checked your site. I didn’t see such problem as mentioned above. The Grey menu is expanding and collapsing just fine. And both of the menus are inline not displaying like in the image above.
    The only problem I saw is, the image seem to be get large while scrolling down. Because of the CSS I’ve given earlier. For resolving this, replace the previous CSS

    #masthead.fixed-header #site-logo img {
        max-height: 75px;
    }

    with the following:

    @media screen and (min-width: 981px) {
        #masthead.fixed-header #site-logo img {
            max-height: 75px;
        }
    }

    Let me know further.

    Regards,
    Mahesh

    in reply to: Sidebar Widget Padding #96979
    Mahesh
    Participant

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

    #secondary .widget {
        margin-bottom: 15px;
    }

    Regards,
    Mahesh

    in reply to: updates #96975
    Mahesh
    Participant

    @andyfielder: The subscription works on yearly basis. If you paid for 1 year subscription, you will get updates for that whole year. And then for updates for next year, you’ll need to pay the subscription again. You can also have gaps between the subscription. Example: Say you subscribed for 1 year then skip the next year and again continue the subscription for the following year. But it is recommended to keep regular updates.

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Header Image for Post Categories #96974
    Mahesh
    Participant

    @ochsensepp: No such option is in the theme. However, in single page/post, featured image can be displayed as header image.
    For the above mention requirement, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Search function on navigation bar #96973
    Mahesh
    Participant

    @mumumat:
    Hi Muriel:

    For this purpose, the theme as a built-in feature Custom CSS. You can add your desired style in here. So if you just want to customize styles, you do not need to create a child theme or edit style.css file. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #search-toggle {
        display: none;
    }

    By menu color, do you mean menu background color? If so add the following CSS:

    .nav-primary {
        background-color: #00FF00;
    }

    Note: Please use you desired color hex.

    Regards,
    Mahesh

Viewing 20 posts - 3,061 through 3,080 (of 4,903 total)