Forum Replies Created

Viewing 20 posts - 4,021 through 4,040 (of 4,903 total)
  • Author
    Posts
  • in reply to: Social media widgets in sidebar #88473
    Mahesh
    Participant

    @cjcomms: The theme does not have built-in widgets for social media feeds but yes, it is possible to add widgets for social media feeds in the sidebar using appropriate social media feed widget plugin.

    Regards,
    Mahesh

    in reply to: Removing Color Change from Social links #88472
    Mahesh
    Participant

    @nagesh-seogmail-com: Please find the code in the following link and put it in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box.
    http://pastebin.com/jFJ0dGLT

    Regards,
    Mahesh

    in reply to: Full Text Post #88471
    Mahesh
    Participant

    @anidos: The latest post with full text and others excerpt: You’ll need to hire a customizer for this.
    For showing full text on homepage, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Layout Option” and select Show Full Content (No Featured Image) in Archive Content Layout.

    Regards,
    Mahesh

    in reply to: REMOVE search form #88469
    Mahesh
    Participant

    @vider: Glad to know you were able to remove search bar, For aligning logo to center, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #site-logo a {
        text-align: center;
    }
    
    .sidebar.sidebar-header-right {
        display: none;
    }
    
    #site-branding, #site-logo, #site-header {
        display: block;
        float: none;
    }
    
    .mobile-menu-one #site-branding {
      width: 100%;
    }

    Regards,
    Mahesh

    in reply to: Adding a link to the footer #88468
    Mahesh
    Participant

    @idis: The above code should work fine. Please post in your site url. Have you activated the child theme?

    Regards,
    Mahesh

    in reply to: Change Homepage Headline – Catch Everest FREE Theme #88467
    Mahesh
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

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

    Regards,
    Mahesh

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

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

    Regards,
    Mahesh

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

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @vider: Please post in your site url.

    Regards,
    Mahesh

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