Forum Replies Created

Viewing 20 posts - 1,881 through 1,900 (of 2,006 total)
  • Author
    Posts
  • in reply to: Dont Work with WP 4.4.1 #82587
    Pratik
    Member

    Hi @TheGamer1,
    Thank you for using Catch Flames. Yes, there was a bug in this theme, but it has been removed and sent for update. Once the update is available, this bug will be fixed.

    If you want this fixed asap, then you can go yo your theme’s header.php file and remove line 26 which has following code:

    
    <title><?php wp_title( '|', true, 'right' ); ?></title>
    

    Regards,
    Pratik

    in reply to: few problems that i face #82582
    Pratik
    Member

    hi @raviuppal,
    1. There is an error in your html. The <main> element is not closed properly, hence footer is getting cut off. Once you solve this issue, the footer will be full width.
    2. This is not possible via custom CSS. You need to make modification to HTML and edit CSS. This is beyond the theme support scope. Please hire a customizer for this.
    3. Add following CSS codes to Appearance=> Customize=> Theme Options=> Custom CSS and this should work

    
    .post-69.page.type-page.status-publish.hentry p {
        float: left;
        width: 50%;
    }
    

    4. To show different ads on different page, just post the ad content in Add/Edit page content. If there is some criteria on to how to show ads, you will need to find a developer to make custom plugin for you. This is not achievable otherwise.
    5. To get rid of that line, add following CSS codes to Appearance=> Customize=> Theme Options=> Custom CSS and this should work.

    
    #footer {
        border-top: none;
    }
    

    Regards,
    Pratik

    in reply to: change Home button #82581
    Pratik
    Member

    HI @jascmeen,
    Add following code to Appearance=> Customize=> Theme Options=> Custom CSS box

    
    .nav-primary .page-menu-wrap ul:first-child {
       text-transform: uppercase;
    }
    
    in reply to: Font size #82580
    Pratik
    Member

    Hi @Cheryl,
    In Appearance=> Customizer=> Theme Options=> Font Family Options=> Default Font Family you can change the font family for slider. If you want to change only for slider, then you can do it via Custom CSS. Use following code in Appearance=> Customizer=> Theme Options=> Custom CSS box:

    
    #main-slider .entry-content { 
       font-family: "Arial Black", Gadget, sans-serif; 
    }
    

    This will change slider font to Arial Black. Change it to any font family you require.

    To decrease size of header, add following CSS code in same place,

    
    #site-title {
       font-size: 35px;
    }
    

    You can decrease 25 to further decrease the size.

    Let me know how everything works out.

    Regards,
    Pratik

    in reply to: Change color of text in feature area #82579
    Pratik
    Member

    Hi @jascmeen,
    You can change the Featured Content Text Color by going to Appearance=> Customize=> Color Options=>Featured Content Color Options =>Text Color.

    Regards,
    Pratik

    in reply to: Removing posts date in Google SERPs #82578
    Pratik
    Member

    Hi @Masac,
    Can you please post in your site url too?

    in reply to: Featured Header Image on above the site title #82577
    Pratik
    Member

    Hi @radeko,
    Since you are already using a child theme, I am going to skip on how to make a child theme.

    Now to push the header image to the top, add following code to your child theme functions.php file:

    
    /**
     * Override parent theme Featured Image Display
     */
    function catchresponsive_featured_image_display() {
    	add_action( 'catchresponsive_header', 'catchresponsive_featured_overall_image', 15 ); 
    } // catchresponsive_featured_image_display
    

    Let me know how it works out.

    Regards,
    Pratik

    in reply to: move from box to box clear catch #82572
    Pratik
    Member

    hi @marcodimi,

    Clean Box Pro has been derived from Catch Box Pro with a lot of more options.

    In Clean Box Pro, you can disable the primary menu as floating menu and use Secondary Menu. This will push the menu below the header image as you have in your site.

    About the images before content, we can do it via child theme customization. You can view this image: here.

    Let me know if you want anything else.

    Regards,
    Pratik

    in reply to: Will I lose content of Custom CSS section if I upgrade #82571
    Pratik
    Member

    hi @Adam,

    Thank you for using Catch Box Pro.

    If you added your CSS via Appearance=> Theme Options => Custom CSS Styles or Appearance=> Customize=> Theme Options => Custom CSS Styles then you will not lose any information, and that CSS will be applicable to new theme versions. However, if you made any direct changes to the core theme files like styles.css, index.php, etc without a child theme, then you will lose those changes.

    Regards,
    Pratik

    in reply to: Mobile Menu Problems #82570
    Pratik
    Member

    hi @[email protected],

    Can you post in your site url and the device name so we can check it?

    Regards,
    Pratik

    in reply to: fix the on-screen menu #82569
    Pratik
    Member

    hi @marcodimi,

    Sorry I misunderstood early. I think what you mean is to fix the primary menu.

    This is a bit complex but it can be done following following steps:
    1. Add following CSS code in Appearance=> Theme Options=> Custom CSS Styles

    
    #access.fixed {
        position: fixed;
        top: 0;
        width: 1000px !important;
    }
    

    2. Then add following jQuery code in Appearance=> Theme Options=> Webmaster Tools=> Header and Footer Codes=> Code to display on Footer:

    
    <script>
    jQuery(window).scroll(function () {
    	if (jQuery(this).scrollTop() > 100) {
    		jQuery('#access').addClass('fixed');
    	} else {
    		jQuery('#access').removeClass('fixed');
    	}
    });
    </script>
    

    This will fix the menu whenever user scrolls below the primary menu.

    If you always want the Primary Menu fixed, you can just add following code to Appearance=> Theme Options=> Custom CSS Styles and it will always be fixed to top.

    
    #access {
        position: fixed;
        top: 0;
        width: 1000px !important;
    }
    
    #branding {
        margin-top: 44px;
    }
    

    Let me know how things workout.

    Regards,
    Pratik

    in reply to: size words widget #82568
    Pratik
    Member

    hi @marcodini,
    You can use the following CSS in Appearance=> Customize=> Theme Options=> Custom CSS Styles box:

    
    /* For Categories Widget Heading */
    .widget_categories h3 {
       font-size: 26px;
    }
    
    /* For Categories Widget Content*/
    .widget_categories  ul li {
        font-size: 15px;
    }
    

    Let me know if this works or not. You can increase/decrease the font-size px as per your need.
    If this does not work, you will need to publish the widget.

    Regards,
    Pratik

    in reply to: fix the on-screen menu #82526
    Pratik
    Member

    Hi @marcodimi,
    By menus to slide down, do you mean sub-menus? If so, in WordPress admin, you can control the menu by going to the Menu under Appearance tab. To make a drop down menu, you just drag and drop the items under another item. You need to drop it as a child element(just drag and drop it).

    If you want anything else, you will either need to hire a customizer or add it via plugin as this goes beyond the theme support scope.
    Regards,
    Pratik

    in reply to: size words widget #82523
    Pratik
    Member

    Hi @marcodimi,
    Assuming http://marcodimizio.com/ as your site, can you let me know which widget you want to have with bigger font sizes, then I can provide you with CSS.

    Regards,
    Pratik

    in reply to: removing post date and author #82522
    Pratik
    Member

    hi @[email protected],
    I am assuming you want these hidden in home blog page. So please add following code in Appearance=> Customize=> Theme Options=> Custom CSS and it should work.

    
    .home .entry-meta,
    .posts-navigation {
       display: none;
    }
    

    If this does not work, please post in your site url.
    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Primary Menu bar Colour #82520
    Pratik
    Member

    Hi @andrewf90,
    If you upgrade to Catch Flames Pro, you will have the option to change the primary menu background color to any color with live preview with a ton of other features, described here. In free version, you will need to do it with custom CSS. In Appearance=> Customize=> Theme Options=> Custom CSS box, add following code:

    
    #header-menu #access { 
       background-color: #dd9933; 
    }
    

    You can change the #dd9933 value to any value you like for hex color.

    About the mobile site, Catch Flames and Catch Box have different design elements so a mobile menu bar is not suited for this theme. However, if you want it, you can add following CSS in above mentioned place which will make a menu bar:

    
    .mobile-menu {
        background-color: #dd9933;
        width: 100%;
    }
    
    in reply to: Grey Padding #82512
    Pratik
    Member

    Hi @andrew90,
    If you mean the background, you can change to any color by going to Appearance=> Customize=> Colors=> Background Color.

    If it is something else, please post in with reference to your site url.

    Regards,
    Pratik

    in reply to: Featured Content Subheadline Text font size #82504
    Pratik
    Member

    Hi @troyjensen,
    To change Subheadline text font size, you can add following CSS in Appearance=> Customize=> Theme Options=> Custom CSS box:

    
    #featured-post #featured-heading h3 {
       font-size: 20px;
    }
    

    Increase/Decrease the 20px in font-size: 20px as per your need.

    Let me know if this works out or not.

    Regards,
    Pratik

    in reply to: H1 #82503
    Pratik
    Member

    Hi @lehii17,
    If you want h1 to be changed, more detail is required. Please let me know which <h1> you want to change, and Where? And a site url will be will be better.

    Regards,
    Pratik

    in reply to: Mobile version #82363
    Pratik
    Member

    Hi @poberdB,
    Can you let me know how you added the content in that page? If you are familiar with HTMl and CSS, then it is due to an inline CSS that adds padding-left: 250px in that <p> tag. Remove it and it will work.

Viewing 20 posts - 1,881 through 1,900 (of 2,006 total)