Forum Replies Created

Viewing 20 posts - 12,001 through 12,020 (of 14,496 total)
  • Author
    Posts
  • 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”.

    in reply to: Header background Image #9952
    Sakin
    Keymaster

    @Dezaina: You can give the full path of the image in your CSS. When you add the css, you can add it in “Appearance => Theme Options => Custom CSS” box.
    The css will be like this.

    #branding {
        background: url("yoursiteurl/wp-content/uploads/2013/05/textured_paper2.jpg") repeat scroll 0 0 transparent;
    }
    in reply to: Can headline on homepage be a link? #9951
    Sakin
    Keymaster

    @tutyga and @carla322: If you are talking about the Homepage Headline. Then you can add the link using basic html. See this http://www.w3schools.com/html/html_links.asp

    So, in homepage headline you can add link like this.
    <a href="http://catchthemes.com">Homepage Headline</a>

    in reply to: HOME LINK Same Background colour #9950
    Sakin
    Keymaster

    @yomal: Thanks. I see that you have use the following css to highlight the home link in your menu. Remove that and it will not highlight when you have active any other link. `#menu-main li:first-child a {
    background-color: #444444 !important;
    }`

    and also remove the code
    <div style=”background-image: url(‘http://www.test.com/wp-content/themes/simple-catch/images/home.png’); width:100px; height:130px; background-repeat: no-repeat; background-color:#444; display: inline; margin: 0; padding: 0 0 0 20px; “> </div>
    that you have added in for home menu and just replace with the text home.

    Then add the following CSS in your “Appearance => Theme Options => Custom CSS” box.

    #header #mainmenu ul li#menu-item-149 a:hover, 
    #header #mainmenu ul li#menu-item-149.current-menu-item a {
        background: url("http://www.sambaero.com/wp-content/themes/simple-catch/images/home.png") no-repeat scroll center center #444;
        display: block;
        text-indent: -99999px;
    }
    in reply to: Add image homepage featured content #9949
    Sakin
    Keymaster

    @cpb: Yes you have to go to “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options”. Then click on Add images. It will open the media uploader box. If this is not working then there must be some issue in your installation.

    To check that, you can go to “Media => Add New” and upload the image from there. If this works fine then let me know it. If this works fine then you can just copy the image url and page it in the “Image” box for Homepage Featured Content Options.

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