Forum Replies Created

Viewing 20 posts - 4,021 through 4,040 (of 4,888 total)
  • Author
    Posts
  • in reply to: Change Homepage Headline – Catch Everest FREE Theme #88467
    Mahesh
    Member

    @adunning: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS, it will fix background of featured content, and gap between headline and menu:

    /* Change Background Color of Featured Content */
    #featured-post {
        background-color: #333333;
    }
    
    #featured-post, #primary {
        padding: 50px;
    }
    
    .no-sidebar-full-width #primary, .woocommerce #primary {
        width: 90%;
    }
    
    #main {
        padding: 0;
    }
    
    #homepage-message {
        margin-top: 0;
    }
    
    #homepage-message p {
        margin: 0;
    	padding: 20px 0; 
    }
    
    @media screen and (max-width: 1020px) {
        #featured-post, #primary {
            padding: 30px;
        }
    }
    
    @media screen and (max-width: 1000px) {
        #primary {
            width: 90%;
        }
    }
    
    @media screen and (max-width: 480px) {
       #featured-post, #primary {
            padding: 20px;
        }
    }
    
    @media screen and (max-width: 320px) {
        #featured-post, #primary {
            padding: 15px;
        }
    }

    Reverse positions of the primary menu (across the top) and the headline & sub-headline
    Yes, this is possible. For this you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following codes.

    add_action( 'init', 'catcheverest_child_move_menu_below_promotion_headline' );
    function catcheverest_child_move_menu_below_promotion_headline(){
    	remove_action( 'catcheverest_after_hgroup_wrap', 'catcheverest_header_menu', 10 );
    	add_action( 'catcheverest_before_main', 'catcheverest_header_menu', 10 );
    	remove_action( 'catcheverest_before_main', 'catcheverest_homepage_headline', 10 );
    	add_action( 'catcheverest_after_hgroup_wrap', 'catcheverest_homepage_headline', 10 );
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Parent without link #88422
    Mahesh
    Member

    @dara-w: Oh, if you haven’t created or assigned any menu to the primary menu, it uses page menu by default. I recommend you to create a menu and assign it to primary menu and it will fix your issue.

    Regards,
    Mahesh

    in reply to: Parent without link #88420
    Mahesh
    Member

    @dara-w: I assume, you have Our work page, and currently your menu item Our Work points to that particular page. But as it is a parent item, you don’t want to link it to any thing right? For that you’ll need to add a custom link. In menu page, you’ll see Custom Menu links, listed along with pages, post, category etc. Click on it then add # in the url field and put a name in the
    Link Text field and click on Add to menu button. Remove you current Our Work item from menu and place the new add item in its place then click Save Menu button.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Parent without link #88418
    Mahesh
    Member

    @dara-w: Yes, this can be done. For that, you should use Custom link as parent item with URL # and label with your desired text for menu item (Our Work) and then put the other children menu items under it.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: How to show posts in Featured Content/Slider #88407
    Mahesh
    Member

    @geosot11: Well, this is beyond my control. I can only suggest you to either upgrade to Pro or Hire customizer/Find a friend who can do the customization to display Posts in Featured Content and Featured Slider instead.
    For further, please contact may be they can help you.
    https://catchthemes.com/contact-us/

    Regards,
    Mahesh

    in reply to: Remove subtitle (text snippet) from slider image #88404
    Mahesh
    Member

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

    Regards,
    Mahesh

    in reply to: White space above header image #88403
    Mahesh
    Member

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

    Regards,
    Mahesh

    in reply to: Sidebar only on a Homepage #88402
    Mahesh
    Member

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

    .sidebar.sidebar-primary {
        display: none;
    }
    
    .home .sidebar.sidebar-primary {
        display: block;
    }
    
    #main {
        width: 100%;
    }
    
    .home #main {
        width: 820px;
    }
    @media screen and (max-width: 1280px) {
        .home #main {
        	width: 720px;
        }
    }
    @media screen and (max-width: 1152px) {
        .home #main {
        	width: 680px;
        }
    }
    @media screen and (max-width: 1100px) {
        .home #main {
            width: 600px;
        }
    }
    @media screen and (max-width: 990px) {
        .home #main {
            width: 100%;    
        }
    }
    in reply to: How to show posts in Featured Content/Slider #88398
    Mahesh
    Member

    @geosot11: In Clean Journal Free version, there is limit for featured content and featured slider to pages and demo only. For more feature like displaying post, widget, image, category is only available in Pro. I recommend you to upgrade to Clean Journal Pro.

    Regards,
    Mahesh

    in reply to: Input Form CSS #88397
    Mahesh
    Member

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

    input[type="text"], 
    input[type="email"], 
    textarea {
        border: 1px solid #cccccc;
        border-radius: 3px;
        color: #666666;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Pictures not loading after update #88395
    Mahesh
    Member

    @gordon30: I checked on the android’s chrome browser and yes the issue exist (two of four images loads in slider). But it is kind of strange, the demo is working fine. Do you have made any changes to the theme file, try disabling all plugins too.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Change Homepage Headline – Catch Everest FREE Theme #88394
    Mahesh
    Member

    @adunning: For italics font in Promotion Headline, use the following CSS:

    #homepage-message {
        font-style: italic;
    }

    Regards,
    Mahesh

    in reply to: How to set Fixed width on page #88391
    Mahesh
    Member

    @oleviolin: Can you please clarify more. And please post in your site url.

    Regards,
    Mahesh

    in reply to: How to Format the Text on Featured Post Slider? #88388
    Mahesh
    Member

    @tdejarnett: In the theme, we do not allow html tags for the security reasons. Another thing you can do to avoid line breakage is increase the width of the slider text content. But it will still cause the breaking for long text. We will try to integrate the feature in the upcoming updates.

    Regards,
    Mahesh

    in reply to: REMOVE search form #88246
    Mahesh
    Member

    @vider: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Pictures not loading after update #88245
    Mahesh
    Member

    @gordon30: That is kind of a strange, that should not have happened. Have you tested on other devices also? Please test in other devices too and please post in your site url. Is it happening on our demo site too on your device?
    https://catchthemes.com/demo/catch-responsive/

    Regards,
    Mahesh

    in reply to: Customize sidebar widget recent posts #88244
    Mahesh
    Member

    @micha:
    1. The Id #gallery-(some numbers) is automatically generated by WordPress. The number starts with 1 and increases with each gallery created on that page. If you create another page and create a new gallery there, then it again starts with 1. I traced it out with firebug.

    2. By default, there is not border in image in gallery, so you can specify border for image in gallery for certain page only like you’ve mentioned above with Id(#)- Specific or with class(.) General. For example
    Say if you have two galleries(#gallery-1 and #gallery-2) in page with post-26:
    Then with Id it can be done as follows:

    .post-26.page #gallery-1 img, .post-26.page #gallery-2 img {
        border: 2px solid #3c3c3c;
    }

    or it can be done with class as follows:

    .post-26.page .gallery img {
        border: 2px solid #3c3c3c;
    }

    Note: If you have more galleries (say #gallery-3, #gallery-5, ……. #gallery-n) in the same page, the above code will put border in gallery-1 and gallery-2 only. Whereas the below code (one with class) will put border in entire gallery on that page.

    Hope this clarifies you.

    Regards,
    Mahesh

    in reply to: White space above header image #88242
    Mahesh
    Member

    @catch1947: Sorry it is not available in this theme. But you can use To Top plugin for that. It is highly customizable. Please find it in the link below:
    https://wordpress.org/plugins/to-top/

    Regards,
    Mahesh

    in reply to: Change Title 2 #88240
    Mahesh
    Member

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

    #site-branding .site-description {
        padding-bottom: 0;
    }

    Let me know if this helps.
    Thank you very much and we really appreciate your feedback.
    Please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/clean-box?rate=5#postform

    Regards,
    Mahesh

    in reply to: upgrade to pro #88235
    Mahesh
    Member

    @creativesigns: Upgrading from Free to Pro doesn’t affect your site, all the settings you’ve made in Free theme will be migrated to Pro.
    Yes, you can use the Pro version in as many sites as you’ve owned. Please do not use it for third party.
    There is the video tutorial on how to upgrade from Free to Pro, please check the link below.
    https://www.youtube.com/watch?v=gVvrbKJNfkE
    You can follow the same instruction to upload the theme to your other sites.

    Regards,
    Mahesh

Viewing 20 posts - 4,021 through 4,040 (of 4,888 total)