Forum Replies Created

Viewing 20 posts - 6,601 through 6,620 (of 14,504 total)
  • Author
    Posts
  • in reply to: Changing the bottom picture and text on the home page #42852
    Sakin
    Keymaster

    @Michael: so are you able to change it now?

    in reply to: Menu Design #42830
    Sakin
    Keymaster

    Hi Romany,

    Thanks for your appreciation. This theme doesn’t full support RTL as we don’t have much experience in it.

    1 & 3. To add line and use RTL menu. First, you need to change the menu arrangement. You need to add Home first and rest follow. Then you can add the following css.

    #secondary-menu ul.menu li {
        float: right;
        border-left: 1px solid #000;
    }

    Regards,
    Sakin

    2. Adding search cannot be achieved just by css and it’s but complicated. you need to build child theme and then add code to add search in menu and then change css. So, I suggest you to hire customizer for this task http://catchthemes.com/hire-customizer/

    in reply to: Footer #42829
    Sakin
    Keymaster

    @chor4o: Yes my friend, only in pro version you are able to remove to footer copyright information. When you are using free theme and free WordPress, so there should be no problem attributing. By doing this, you are supporting Open Source and Free Themes.

    You can disable comment in free theme. But you need to use default WordPress settings. Don’t have easy option in Theme Options panel. If you are trying to disable it for individual pages/post, then see this screenshot http://www.pinterest.com/pin/548594798329843253/

    in reply to: Changing the bottom picture and text on the home page #42828
    Sakin
    Keymaster

    @Michael: That is called “Homepage Featured Content” and you can see in theme instructions page at http://catchthemes.com/theme-instructions/catch-everest-pro/, that you can change it from “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options”

    in reply to: Fine Control of Post Layout On A Mobile Device #42826
    Sakin
    Keymaster

    @John: Can you post in your site URL and let me know which layout you are using in Catch Evolution Theme. Then accordingly we need to change the code to make the sidebar first in the mobile devices.

    For this, first you need to build child theme. You can download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and depending on the layout you choose we need to make changes. For example, if you have selected “Left Sidebar” or “Right Sidebar” layout from “Appearance => Theme Options => Layout Options”. Then, you need to copy header.php and index.php file from catch-evolution-pro theme directory to catch-evolution-pro-child theme directory. Then delete the following code from index.php
    <?php get_sidebar(); ?>
    Then in header.php file you need to add the above code which you have remove from index.php file. You need to add it just above <div id="primary"> code.

    in reply to: Menu bar color #42824
    Sakin
    Keymaster

    Hi Romany,

    Which CSS are you talking about? Can you explain in reference with your site URL so that I can check in.

    Regards,
    Sakin

    in reply to: Insert search bar in primary menu #42823
    Sakin
    Keymaster

    @Romany: Sorry we don’t have option to dd search bar in the main menu.

    in reply to: Changing the position and font color of a footer-menu #42800
    Sakin
    Keymaster

    @Kath: hum this looks complicated as we need to change the position and css. So, sorry you need to consider hiring customizer for this http://catchthemes.com/hire-customizer/

    in reply to: location manager menu #42799
    Sakin
    Keymaster

    @Lina: This one is little difficult as we don’t have option for this.

    So, you need to build child theme first. For child theme, you can download sample Simple Catch Child theme from http://catchthemes.com/blog/create-child-theme-wordpress/. Then copy header.php file from simple-catch theme directory to your child theme directory ‘simple-catch-child’. Then find the following code in your header.php file

    <?php 
    	// simplecatch_headersocialnetworks displays social links given from theme option in header 
    	if ( function_exists( 'simplecatch_custom_header_image' ) ) :
    		simplecatch_custom_header_image(); 
    	endif;
    ?>
    <div id="mainmenu">
    	<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    </div><!-- #mainmenu-->  
    <div class="row-end"></div>

    Then replace it with the following code:

    <div id="mainmenu">
        <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    </div><!-- #mainmenu-->  
    <div class="row-end"></div>
    <?php 
        // simplecatch_headersocialnetworks displays social links given from theme option in header 
        if ( function_exists( 'simplecatch_custom_header_image' ) ) :
            simplecatch_custom_header_image(); 
        endif;
    ?>
    in reply to: CSS not recognised since upgrade to pro? #42798
    Sakin
    Keymaster

    Hi Niel,

    For slider, it giving issue as of your menu css. So, you can either add in the following css in “Appearance => Theme Options => Custom CSS” box or fix menu float:
    #main-slider { clear: both; }

    For menu and color, I recommend you to remove the all the custom css from “Appearance => Theme Options => Custom CSS” box. Then use the color options in “Appearance => Theme Options => Color Options”

    Then use other option that’s available in Theme Options panel. Then if you need any additional settings then let me know it in a list. Then I will send you correct custom css. As your custom css is all mixed and lot of wrong coding can be found.

    in reply to: Problems with mobile version #42784
    Sakin
    Keymaster

    @Wolfgang: Looks like plugin issue. Can you check your cachify settings or remove that.

    in reply to: Hidden #42771
    Sakin
    Keymaster

    then remove that custom css to remove the background

    in reply to: Hidden #42769
    Sakin
    Keymaster

    are you talking about footer image that you have added in #site-generator. Then you can just change the image URL in your css.

    in reply to: Hidden #42764
    Sakin
    Keymaster

    Sorry I am not design consultant. I am here just to help you with technical problem 🙂

    in reply to: New post not show in the homepage #42762
    Sakin
    Keymaster

    @liucloud: Cool 🙂

    in reply to: CSS not recognised since upgrade to pro? #42760
    Sakin
    Keymaster

    @nac2311: Simple Catch and Simple Catch Pro is quite different in structure as Simple Catch used HTML4 and CSS2 technology where as Pro uses HTML5, CSS3 and responsive design technology. That is why the same custom css will not work.

    So, in your css change
    #header to #branding

    change
    #header #mainmenu to #branding #access

    Change
    #main #content ul.post-by to .entry-meta

    in reply to: Hidden #42759
    Sakin
    Keymaster

    Don’t know it’s not form our theme. Looks like it’s from the code you have added. So, you need to debug it. If that is from iframe code then we cannot change it.

    in reply to: Having just feature content and slider #42758
    Sakin
    Keymaster

    Just go to “Appearance => Menus” and then in in your menu with the label Home, just click on right corner and it will expand it. Then you will see remove button. Then you can add back home menu.

    in reply to: Changing the position and font color of a footer-menu #42757
    Sakin
    Keymaster

    @Kath: I don’t know what you got. Can you explain with your site URL so that I can check in.

    in reply to: Header #42741
    Sakin
    Keymaster

    @ashrafashraf: You can add the following css in your custom css.

    #branding {
        background: url("http://new.tinygrab.com/225cb604b3a0e2244f401e57a22401318b7a185a66.png") no-repeat scroll 0 0 transparent;
    }
Viewing 20 posts - 6,601 through 6,620 (of 14,504 total)