Forum Replies Created

Viewing 20 posts - 12,061 through 12,080 (of 14,504 total)
  • Author
    Posts
  • in reply to: Post on homepage since 1.0 update #9814
    Sakin
    Keymaster

    @danielfawcett and @Erker: Sorry for the trouble and thanks for working around. We have fixed the issue and send it for update to WordPress.org . It will be live as soon as the WordPress Theme Review team approves it.

    But for now. You can manually update.
    1. Downloading the new theme 1.1 from the following URL
    http://wordpress.org/themes/download/catch-everest.1.1.zip
    2. Login to your site and go to “Appearance => Themes” and activate the default theme link Twenty Twelve.
    3. Then delete the old version of Catch Everest
    4. Then go to “Appearance => Themes => Install Themes => Upload”
    5. Then click on Browse and select the downloaded zip file catch-everest.1.1.zip and upload it and activate it.

    in reply to: Updated and have a "wrong datatype" error #9808
    Sakin
    Keymaster

    @babyslime: Strange error. Can you go to “Appearance => Theme Options => Homepage / Frontpage category setting” Then select all the categories and save it. Then you can click on disable and save back. Check in both condition.

    in reply to: Header Inquiry #9807
    Sakin
    Keymaster

    @Uendi:
    1. Move the “Home” to the left,
    — Add the following CSS

    #header-menu ul.menu{
        text-align: left;
    }

    2. Change the color from grey to blue for the menu bar,
    — Add the following CSS

    #header-menu {
        background-color: #1E73BE;
    }

    3. Change the highlight color from black to blue for the menu bar,
    — Add the following CSS

    #header-menu .menu .current-menu-item > a, #header-menu .menu .current-menu-ancestor > a, #header-menu .menu .current_page_item > a, #header-menu .menu .current_page_ancestor > a, #colophon .menu .current-menu-item a {
        background-color: #1E73BE;
    }

    4. Place the “Search” words next to the search box,
    — Add the following CSS

    #header-right #searchsubmit {
        display: inline-block;
        float: left;
    }
    #header-right #s {
        float: left;
    }

    6. Adjust the size of the site to be narrow a bit,
    — I don’t get this. Please explain.

    7. Adjust the white spacing between the top and the site title to be longer,
    — Adjust the padding top and ddd the following CSS

    #hgroup {
        padding-top: 5rem;
    }

    and is there a way to insert a logo and the site title together on the left top.
    — Why don’t you have site title in the logo image and then add it from “Appearance => Header”

    in reply to: YouTube Widgets #9806
    Sakin
    Keymaster

    @Tekstiltrold: I see that you have added css in “Appearance => Theme Options => Custom CSS” box. Just remove the following CSS from Custom CSS box.
    #header-content { padding: 5em 0; }

    Then disable the Header Right sidebar through “Appearance => Theme Options => Header Options”. Check to disable “Disable Header Right Sidebar” and click on save.

    in reply to: Passsword Protected Page #9805
    Sakin
    Keymaster

    @Peter Hohl: To delete the text below the page. “This post is password protected. Enter the password to view any comments.”. You can just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .nopassword { display: none; }

    The text “This post is password protected. To view it please enter your password below:” is from the WordPress default. If you have installed WordPress in your language then it should be auto. This has nothing to do with theme.

    in reply to: Header Inquiry #9788
    Sakin
    Keymaster

    yes that’s right but check your FTP for file style.css in your child theme directory “catch-everestchild”. The child theme sytle.css is missing in your live site. You can paste the following link in your browser and see that i mean. You will not find this file http://uendi.com/wp-content/themes/catch-everestchild/style.css

    in reply to: Center Column in the Footer #9787
    Sakin
    Keymaster

    @xpyouth: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box of your site http://www.xpyouth.org/.

    #site-generator .site-info {
        text-align: center;
    }
    #site-generator .copyright {
        width: 100%;
    }
    in reply to: Passsword Protected Page #9786
    Sakin
    Keymaster

    @Peter Hohl: I need your site URL please?

    in reply to: Excerpts not working right at all #9784
    Sakin
    Keymaster

    @arcama: It’s ok. Have a nice day.

    in reply to: Adding Space Between Content & Sidebar #9783
    Sakin
    Keymaster

    @MairiaM: Sorry I cannot help it before adding back the the footer text “Theme: Simple Catch”. I have already replied in your other forum question is that you are not allowed to change the footer theme name while using Free Theme. This is the only means of recognition that you get for proving theme, updates and support forum for free. I hope you understand and add back the name and I will be happy to help you further.

    in reply to: Header Inquiry #9782
    Sakin
    Keymaster

    @Uendi: For this all you don’t need to build child theme. Just active the Parent Theme itself. You can add those custom CSS in “Appearance => Theme Options => Custom CSS” box. You need to build child theme only if you want to edit any core theme functions. Just make the parent theme active and add the css in Custom CSS box and it will work fine.

    in reply to: Forum query #9781
    Sakin
    Keymaster

    @oly: It’s working fine. But before viewing the forum first you need to login through http://catchthemes.com/login/ and then only visit http://catchthemes.com/support-forum/forum/catch-everest-pro-premium/ . Otherwise it will show you Page not found.

    in reply to: Header Inquiry #9779
    Sakin
    Keymaster

    @Uendi: Your site don’t have style.css fine that is why you are seeing all those. The style.css will hide it.

    I see that you have build child theme but loading it incorrectly. As when I view source your site source to check style.css, I found this http://uendi.com/wp-content/themes/catch-everestchild/style.css

    But there is file is not found. So, please fix this and all will be fixed.

    in reply to: Different colors to different widget #9778
    Sakin
    Keymaster

    @kulsoomtm: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    `/* For Currency Converter Widget header background color and font color */
    #text-2 .widget-title {
    background-color: #000;
    color: #fff;
    }
    /* For Recent Special Post */
    .widget_specialrecentpostsFree .widget-title {
    background-color: #000;
    color: #fff;
    }
    /* For Categories */
    .widget_categories .widget-title {
    background-color: #000;
    color: #fff;
    }
    /* For Recent Comments */
    .widget_recent_comments .widget-title {
    background-color: #000;
    color: #fff;
    }
    /* For Top Posts & Pages */
    .rw_top_rated .widget-title {
    background-color: #000;
    color: #fff;
    }
    /* For Subscribe to Blog via Email */
    .jetpack_subscription_widget .widget-title {
    background-color: #000;
    color: #fff;
    }
    /* For Tags */
    .widget_tag_cloud .widget-title {
    background-color: #000;
    color: #fff;
    }
    /* For all Widget title at once */
    .widget-title {
    background-color: #000;
    color: #fff;
    }

    in reply to: YouTube Widgets #9776
    Sakin
    Keymaster

    @Tekstiltrold: you have added the header logo as the background through following CSS.

    #branding {
    background: url("http://tekstiltrolden.dk/wp-content/uploads/2013/03/Original-Header-med-blå-skrift.jpg") repeat scroll 0 0 transparent;}
    #header-content { padding: 5em 0; }

    Remove the above css and then add your header image from “Appearance => Header”. Just click on Browse and select the image you want to add then then click on “Skip Cropping, Publish Image as Is” button. This will add full width header image.

    Then you can remove the spaces in the header through “Appearance => Theme Options => Header Options”. Then just add 0 in all 4 margins and click on save.

    in reply to: Reverse order of responsive design? #9775
    Sakin
    Keymaster

    @frog357: Yes that is only the option that you can do to make the sidebar come first. As in mobile devices, the elements come in ascending order.

    in reply to: Header Inquiry #9774
    Sakin
    Keymaster

    @Uendi: What are you doing with the them. I check in your site and it’s missing style.css file.

    in reply to: NO iPad support! #9773
    Sakin
    Keymaster

    @Peter: Sorry we cannot generalized and add the heavy script to make the site slower. We wan to keep the theme as light as possible. Yes, if you want to do it in your site then you can send me your site URL and I will send you the css that you can add.

    Sakin
    Keymaster

    @ktglasscock: I see that you have already add the css for site title and tagline and it is working fine. I don’t understand what you want to do it now.

    in reply to: Centering menu bar #9771
    Sakin
    Keymaster

    @MairiaM: Please add back the footer content. You just need to add back “Theme: Simple Catch”. For free them you are not allowed to change the footer theme name. This is the only mean of recognition that we get for providing Theme, Updates, and Support for free. I hope you understand. Please add back and post here, then I will look at your issue.

Viewing 20 posts - 12,061 through 12,080 (of 14,504 total)