Forum Replies Created

Viewing 20 posts - 1,841 through 1,860 (of 2,006 total)
  • Author
    Posts
  • in reply to: GNU GPL compliance #82987
    Pratik
    Member

    Hi @tjbp,

    The theme file itself is the source code. In PHP, the server compiles the codes on the fly so, there is no code conversion. Let me know what you want and I can point you that where that piece of code lies.

    Regards,
    Pratik

    Pratik
    Member

    Hi @adunning,
    This is not possible with the current Catch Everest Theme. If you want, you can try other themes like Catch Adaptive and Create which have similar three column magazine layout.

    I don’t think a plugin can be recommended, but you can check our plugins at WP.org Plugins Repo.

    Regards,
    Pratik

    in reply to: Bold Main Menu Titles #82954
    Pratik
    Member

    Hi @ttolun,

    I am glad it worked. If you liked our theme and support, please leave us a review at https://wordpress.org/support/view/theme-reviews/full-frame. It will be very much appreciated.

    Regards,
    Pratik

    in reply to: Home page layout strange behavior #82953
    Pratik
    Member

    Hi @Martin,

    Humm, thats strange. I will ping Sakin. We may require more info.

    Regards,
    Pratik

    in reply to: Featured Slider Height #82952
    Pratik
    Member

    Hi @benowchiro,

    You will not loose Custom CSS. All the theme options will be migrated to pro version as well.

    Regards,
    Pratik

    in reply to: Mobile menu issue #82951
    Pratik
    Member

    Hi @Catchchris,

    I tried visiting http://www.christian.traxler.at/ but it gives server not found error. Can you recheck the link?

    Regards,
    Pratik

    in reply to: Mobile layout issue #82927
    Pratik
    Member

    HI @LiminalLCC,

    We will sort out this issue in next version update. For now, you can use following CSS code in Appearance-> Customize-> Theme Options-> Custom CSS

    
    @media screen and ( max-width:980px ) {
       .no-sidebar.content-width #main {
           width: 100%;
       }
    }
    
    

    Let me know if this helps.

    Regards,
    Pratik

    in reply to: Featured Slider Height #82926
    Pratik
    Member

    HI @benowchiro,

    In free version, there is only featured post slider and featured category slider. The images for both these are automatically re-sized so it is not possible to fix a certain height as they are pre-build. So, they cannot be resized with custom CSS.

    If you upgrade to pro version, you can select a featured image slider in which you can add images with custom height for your need. The details of pro version is here

    Regards,
    Pratik

    in reply to: Bold Main Menu Titles #82925
    Pratik
    Member

    hi @ttolun,

    Put the following CSS code in Appearance => Customizer => Theme Options => Custom CSS box:

    
    .nav-primary {
        font-weight: bold;
    }
    

    Let me know if it works out or not.

    Regards,
    Pratik

    in reply to: chekout and freight displayed twice? #82924
    Pratik
    Member

    Hi @Lethos,

    I tried adding MAGNET ARMBÅND I HÆMATIT item, and it worked fine till the checkout page. I did not go though the final process. I did not get freight option.

    Can you show your issue with a screenshot?

    Regards,
    Pratik

    in reply to: Questions about renewal #82923
    Pratik
    Member

    Hi @Cricket,

    I will contact the sales team and let you know. If you want a quicker response, please post in your request at http://catchthemes.com/contact-us/.

    Regards,
    Pratik

    in reply to: Home page layout strange behavior #82922
    Pratik
    Member

    Hi @Martin,

    Can you check if there is this same issue with your site when the language is changed to english. I think this might be a translation file issue.

    Please let me know.

    Regards,
    Pratik

    in reply to: website width #82921
    Pratik
    Member

    hi @niti77,

    Do you mean that your site has same width as 1366×768 even on screens with this resolution 1440×900 or higher. Catch Responsive theme is not fluid layout theme. It is boxed layout theme.

    If you want it to be fluid layout, you can add following css code in “Appearance-> Customize-> Theme Options-> Custom CSS” box:

    
    @media screen and ( min-width:1440px ) {
       .site, #feature-slider .cycle-slideshow {
          width: 100%;
       }
       
       #main {
          width: 70%;
       }
    }
    

    This will make the width 100% for screen sizes greater than 1440px width. For anything else related to the width, you will need to hire a customizer to do custom work and make it work for higher resolution screens as you like.

    Please post in your site url too for further queries.

    Regards,
    Pratik

    in reply to: Troubleshoot gallery pics on resolution 1600 x 900 #82920
    Pratik
    Member

    Hi @Pia,

    Assuming http://bonitatissue.com/ being your site, have you used any gallery plugin? If you haven’t can you share the screenshot with me because when I view it at 1600 x 900 resolution, the display is similar to the one on 1366 x 768. Ref: http://responsivetest.net/#u=http://bonitatissue.com/|1600|900|1

    Please let me know.

    Regards,
    Pratik

    in reply to: Grey Padding #82770
    Pratik
    Member

    Hi andrewf90,

    I am glad everything worked out.

    Regards,
    Pratik

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

    Hi andrewf90,

    Glad everything worked out. If you liked our theme and support, please leave a review at here.

    Thanks,
    Pratik

    in reply to: Dont Work with WP 4.4.1 #82767
    Pratik
    Member

    Hi TheGamer1,
    Glad everything worked out. If you liked our theme and support, please leave a review at here.

    Thanks,
    Pratik

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

    Hi Masac,
    Glad everything worked out. If you liked our theme and support, please leave a review at https://wordpress.org/support/view/theme-reviews/catch-everest.

    Thanks,
    Pratik

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

    hi andrewf90,
    For both conditions, you will need to make a child theme and do some customizations. For child theme, you can find the details here.

    Then in your child theme’s functions.php add following codes:
    i)Moving the menu bar to the bottom:

    
    /**
     * Move mobile nav
     *
     */
    function catchflames_child_move_mobile_nav() {
    	remove_action( 'catchflames_headercontent', 'catchflames_main_mobile_menu', 10 );
    
    	add_action( 'catchflames_headercontent', 'catchflames_main_mobile_menu', 40 );
    }
    add_action( 'init', 'catchflames_child_move_mobile_nav' );
    

    ii)To have a solid color bar between the header and page:
    In Appearance=> Customize=> Theme Options=> Custom CSS box, add following code:

    
    @media screen and ( max-width: 940px ) { 
       #branding {
          border-bottom: 30px solid #dd9933;
       }
    }
    

    Change #dd9933 to your desired color hex value.
    For (ii), if this is not what you were thinking of, you will need to ad a different div and give it style. To do this, you will need to hire a customizer as this falls outside of the theme support scope.

    Regards,
    Pratik

    in reply to: Grey Padding #82715
    Pratik
    Member

    Hi @andrewf90,
    That is background. In Appearance=> Customize=> Colors=> Background Color, just change that color to white and it will be removed.

Viewing 20 posts - 1,841 through 1,860 (of 2,006 total)