Forum Replies Created

Viewing 20 posts - 12,001 through 12,020 (of 14,500 total)
  • Author
    Posts
  • in reply to: Settings for Home and Blog pages #10024
    Sakin
    Keymaster

    @jimchicago: I check in your site and it is working fine.

    in reply to: Homepage/Frontpage #10023
    Sakin
    Keymaster

    @xpyouth: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #featured-post { border-bottom: 1px solid #000; }

    in reply to: images #10022
    Sakin
    Keymaster

    @Lucosunshine: It’s strange. I need to check in your server. I will email you now.

    in reply to: Additional Social Media Link #10021
    Sakin
    Keymaster

    @shaneskinner: If you are using Catch Everest theme and then add your another Facebook link myspace url. Then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to change the myspace icon to Facebook icon.

    ul.social-profile li.myspace a {
        background-position: 0 0;
    }
    ul.social-profile li.myspace a:hover {
        background-position: 0 -43px;
    }

    @JPW2105l: There is instagram icon in Catch Everest Theme by default.

    in reply to: Hyperlinks Contain Spaces After #10020
    Sakin
    Keymaster

    @MairiaM: I just check in your site and found that you have added the link and then image after link. Check your “Available at Amazon”. It is written as below:
    <strong>(Available at <a target="_blank" href="http://www.amazon.com/exec/obidos/ASIN/0758280688/readforplea0b-20">Amazon</a><img width="1" height="1" border="0" src="http://www.assoc-amazon.com/e/ir?t=readforplea0b-20&l=as2&o=1&a=0758280688" alt="" style="border: none !important; margin: 0px !important;">)</strong>

    in reply to: Source Code #10019
    Sakin
    Keymaster

    @shaneskinner: thanks for the update. To be noted: don’t edit any core theme files and styles. To edit style, you can add it in “Appearance => Theme Options => Custom CSS” box and to edit the functions you need to build child theme and edit it in child theme functions. If you do this way, you won’t lose any data when you perform update.

    in reply to: PNG not transparent #10018
    Sakin
    Keymaster

    @impresnet: I don’t get it. The PNG image will be transparent and it will take the background of the wrapper.

    in reply to: Remove Shadow Around The Body #10017
    Sakin
    Keymaster

    @xpyouth: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .site { box-shadow: none; }

    in reply to: Disable Comments #10016
    Sakin
    Keymaster

    @donal.leader: If you want to edit the template and remove the comment function. Then you need to build child theme and edit the file content-sidebar-full.php, content-sidebar-left.php, content-sidebar-right.php where you can just comment out comments_template().

    But you can also disable the comment without editing core theme files from setting. See this http://en.support.wordpress.com/enable-disable-comments/

    in reply to: Footer Widget #10015
    Sakin
    Keymaster

    @mg13: Simple Catch theme don’t have footer widgets. You need to build Child Theme and register footer sidebar and css. For this you need to hire developer.

    in reply to: Header is too tall #10014
    Sakin
    Keymaster

    @bigjosh: thanks for looking though old forum answers.

    in reply to: CATCH EVEREST #9976
    Sakin
    Keymaster

    @peterbook: It was good. That’s the plugin. You can hire developer to optimize it for you. This is not a theme related but related to server performance.

    in reply to: CATCH EVEREST #9972
    Sakin
    Keymaster

    @peterbook: It depends on the server you host on and also you can use the plugin like W3 Total Cache and all to optimize the theme.

    in reply to: Breadcrumb navxt #9971
    Sakin
    Keymaster

    @clubio: Building child theme. Read here http://codex.wordpress.org/Child_Themes

    If you change code directly to the theme, then you need to keep backup. So, when there is theme update you need to put back again.

    in reply to: Working with Galleries & Slider #9961
    Sakin
    Keymaster

    @amyfanton: You need to install the theme in any demo site and show to then I can assist you better.

    1. I would like to create an additional slider gallery on a page other than the home page (portfolio). Is this possible? Can someone please tell me how? I don’t want a gallery with multiple thumbnail images displayed at the same time (as it is now)
    — You can show the same slider in whole site but you cannot have different slider in different pages.

    2. How can I increase the height of the slider on the home page, and delete the three images & content that are below (the prayer wheels, mt. everest, mt kanchen)
    — To change the height of the slider on the homepage. You can use “Featured Image” slider and then add the image of the height you want.
    — To delete the three image and the content. That is called “Homepage Featured Content”. You can disable that from “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options”. Check “Disable Homepage Featured Content” and save it.

    3. On another page (client galleries), I would like to create multiple galleries that each display only one photo, and are password protected for clients. Can someone please help me figure out how to do this?
    — You can try installing plugins. Search for plugins that suits you best at http://wordpress.org/extend/plugins/

    in reply to: Header Issues #9960
    Sakin
    Keymaster

    @aceenrichment: Thanks.
    1. Decrease the padding on top and bottom of the logo
    —Decrease the padding in the following CSS in add it in “Appearance => Theme Options => Custom CSS” box.

    #site-logo {
        padding-top: 50px;
    }
    #hgroup-wrap {
        padding-bottom: 50px;
    }

    2. Clear the header color and remove the shadow around it
    — Add the following CSS in add it in “Appearance => Theme Options => Custom CSS” box.

    .site {
        background-color: transparent;
    }
    #main {
        background-color: #fff;
    }

    3. Remove the shadow around the header right sidebar
    — Add the following CSS in add it in “Appearance => Theme Options => Custom CSS” box.

    #header-right .widget img {
        box-shadow: none;
    }

    4. create space between the main menu and the body
    — Add the following CSS in add it in “Appearance => Theme Options => Custom CSS” box.

    #header-menu {
        margin-bottom: 15px;
    }
    in reply to: featured image slider text #9958
    Sakin
    Keymaster

    @alisonmckellar: You need to update to latest version 1.2.2 to fixed that issue. Or if you want to fix it in this version then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #main-slider .entry-title a {
    	background: rgba(255, 255, 255, 0.7);
    	color: #222;
    	display: block;
    	padding: 10px 25px;
    }
    in reply to: White padding around logo in header #9955
    Sakin
    Keymaster

    @Iceman: Add the following CSS in “Appearance => Theme Options => Custom CSS” box
    #hgroup-wrap { padding: 0; }

    If this doesn’t work then send me your site URL. I will check it and send you the css.

    in reply to: page width #9954
    Sakin
    Keymaster

    @ohamilto: For that you need to use the layout “No Sidebar: Full Width” which is there in Catch Everest Pro theme. See this http://catchthemes.com/demo/catch-everest/sidebar-layout/no-sidebar-full-width/

    in reply to: Random featured image header #9953
    Sakin
    Keymaster

    @oly: Yes that is supported by Catch Everest Pro. You can do random header image from “Appearance => Header”.

Viewing 20 posts - 12,001 through 12,020 (of 14,500 total)