Forum Replies Created

Viewing 20 posts - 9,441 through 9,460 (of 14,497 total)
  • Author
    Posts
  • in reply to: Change featured content to descending #18116
    Sakin
    Keymaster

    @seatoskylifestyle: I don’t get it what you mean. All your post will be display as Latest Post first. So, I am confused. Maybe you can explain in reference with your site URL.

    in reply to: Hide Title on Featured Slider? #18114
    Sakin
    Keymaster

    @jpbertram: You can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #main-slider .entry-container { display: none; }
    #main-slider .slides:hover .entry-container { display: block; }
    in reply to: How to change Font size in menu #18113
    Sakin
    Keymaster

    @prius4f: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #branding ul.menu { font-size: 14px; }

    in reply to: My own CSS file #18112
    Sakin
    Keymaster

    @marcella: Yes best way to add Custom CSS is either adding it in “Appearance => Theme Options => Custom CSS” box or by building child theme.

    For your slider box, I see that you have added following CSS in “Custom CSS” box as well as in edit CSS under Appearance. So, it is having box. Please remove those css.

    #main-slider .entry-title a {
        background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);
        display: block;
        padding: 1rem 2.5rem;
    }
    in reply to: Disable links on slider and post on homepage #18110
    Sakin
    Keymaster

    @Mgx: You will find catchevolution_sliders() function in catchevolution-functions.php file inside inc directory of Catch Evolution theme.

    in reply to: Expanded the content #18109
    Sakin
    Keymaster

    @Otton: Please remove margin: 0; from your custom css in the css below.

    .page-id-474 #page {
        margin: 0;
        max-width: 1000px;
    }

    Then you can add the following CSS

    /* Remove the padding in main */
    #main { padding: 0; }
    /* Remove Margin from Content */
    .singular #content, .fullwidth #content, .sidebar-content.singular #content { margin: 0; }
    in reply to: social media icons #18108
    Sakin
    Keymaster

    @regenesys: Check out the footer.php file at http://themes.svn.wordpress.org/catch-box/2.9/footer.php . I see that you have removed the action catchbox_site_generator which is required to get in social icons.

    in reply to: Mobile Drop Down menu in Arabic #18107
    Sakin
    Keymaster

    @blackkeys: Ok so what you need to do now?

    in reply to: Using a header image in responsive design #18106
    Sakin
    Keymaster

    @OBO Bettermann: I don’t think it will effect. For SEO, we recommend using WordPress SEO by Yoast Plugin.

    in reply to: file downloads without zip #18078
    Sakin
    Keymaster

    @Canexas: Please check in our Theme Instruction page for detail theme instruction page at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: Using a header image in responsive design #18077
    Sakin
    Keymaster

    @OBO Bettermann: You can add header image from “Appearance => Header”.

    in reply to: Expanded the content #18069
    Sakin
    Keymaster

    @Otton: You have already customize the site and it looks so different. Can you remove that custom CSS and then I can send you the custom css to change that.

    in reply to: social media icons #18068
    Sakin
    Keymaster

    @regenesys: Thanks I love the way you have use Catch Box Theme in your site. It’s the best customization and nice to see that you have build child theme. But I am suprise to see that you have removed the “Theme: Catch Box” from the footer. Please add that back as this is the only mean though which we provide Free Theme and Free Support. If you want to remove that from Footer then please consider using Catch Box Pro version where you have Footer Editor in Theme Options panel to remove that.

    I don’t know how you have customize the footer in your child theme. As when you add social links in “Appearance => Theme Options => Social Links”, it automatically add social icons in the footer. Please check in your edits in Footer.

    in reply to: Menu Text Colors #18067
    Sakin
    Keymaster

    @BenniemanZA: I see that you site is sill user construction so I couldn’t check in. I you are using Catch Everest Pro theme then you can change the color easily from “Appearance => Theme Options => Color Options” where you have color picker and can change any color you want.

    If you are using Free Version of Catch Everest Theme, then you can change the color of them text in the menu bar by changing the color code in following CSS and adding it in “Appearance => Theme Options => Custom CSS” box.
    #header-menu ul.menu a { color: #eee; }

    in reply to: delete "leave a message" comment box #18066
    Sakin
    Keymaster

    @MMchen: That’s nice. Thanks 🙂

    in reply to: Nothing Found #18053
    Sakin
    Keymaster

    @Ser_DNA: That means you haven’t added Featured Images on those post. So, just add featured images on those post. See here on how to add featured image http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    in reply to: Safari Layout Issues #18052
    Sakin
    Keymaster

    @adasprom: Yes, you need to disable the responsive design. Maybe you can wrap your widget with div code like this.
    <div style="max-width: 570px">Your Widget Code</div>

    in reply to: Mobile Drop Down menu in Arabic #18051
    Sakin
    Keymaster

    @blackkeys: It’s because of the following CSS that you have added in your Custom CSS box.

    #hgroup-wrap { padding-top: 10px; }
    #hgroup-wrap { padding-bottom: 10px; }
    #hgroup-wrap { padding-left: 170px; }
    #hgroup-wrap { padding-right: 10px; }

    If you want that padding to be only in big screen then you need to add like below:

    @media screen and (min-width: 961px) {	
    #hgroup-wrap { padding-top: 10px; }
    #hgroup-wrap { padding-bottom: 10px; }
    #hgroup-wrap { padding-left: 170px; }
    #hgroup-wrap { padding-right: 10px; }
    }

    And then for widget in Mobile devices it will be as below:

    @media screen and (max-width: 768px) {
    .header-sidebar { padding-top: 0; }
    }
    in reply to: Disable links on slider and post on homepage #18049
    Sakin
    Keymaster

    @Mgx: I see that you are using Free version of Catch Evolution, where you can only use Featured Post Slider. This slider is created to highlight you post. So, you cannot remove that link. Instead if you use Catch Evolution Pro version, there is Featured Image slider where you can upload your image without or with link. It’s optional.

    About the post in the homepage, it is the default way that WordPress uses in Blog. It will link to the post. To remove that link it’s bit difficult. You might need to hire developer to work for you on this customization.

    I will guide you the process.
    1. Build child theme of Catch Evolution Theme
    2. Then copy content.php file in your child theme and remove the link from the title
    3. For slider you can create functions.php file and copy catchevolution_sliders() function and edit that in your child theme.

    in reply to: webmatrix- WP #18048
    Sakin
    Keymaster

    @guy.shachar76: If you delete your site then you can recover only if you have backup of your site. Otherwise, you will loose your data and have to do fresh installation. About your server, you need to take support from your server to assist you in recovery.

Viewing 20 posts - 9,441 through 9,460 (of 14,497 total)