Forum Replies Created

Viewing 20 posts - 10,581 through 10,600 (of 14,509 total)
  • Author
    Posts
  • in reply to: different header image on pages #14470
    Sakin
    Keymaster

    @jenbrookswriter: Ok. Now you can go to “Appearance => Theme Options => Header Featured Image Options”. Then you will see “Enable Featured Header Image” where need to click on “Entire Site, Page/Post Featured Image”.

    Note: Make sure you have added in Featured Image in your page. Otherwise, it will not display. To learn about adding in Featured Image in page, see this http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    in reply to: Change font color in Header? #14469
    Sakin
    Keymaster

    @moffie: Are you using Simple Catch Free theme. It’s always better to share your site URL, so that I can check in and send you the css code. The following CSS code is to change the color of Site tile and Site Subtitle in Simple Catch Free Theme. In the following CSS, change the color code as per you need and then add it in “Appearance => Theme Options => Custom CSS” box.

    /* Site Title Color */
    h1#site-title a { color: #444; }
    /* Site Subtitle Color */
    h2#site-description { color: #666; }
    in reply to: Another centered logo question #14467
    Sakin
    Keymaster

    @oly: With your current CSS. You can just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header-left { width: 100%; }

    in reply to: Migrate WordPress to other folder #14466
    Sakin
    Keymaster

    @albertoc: You cannot just change the link in settings. To move the site from one folder to another, first you need to move all the files from that that folder to new one. Then you can use search and replace file to change the database path saved. See this article http://interconnectit.com/products/search-and-replace-for-wordpress-databases/

    in reply to: Optional Sidebars / Lines Separating Widgets #14462
    Sakin
    Keymaster

    @chipbphoto:
    1. To activate the optional sidebar, you need to add widgets in Optional Sidebar and then you have to select the optional sidebar in “Catch Everest Options” Meta Box, Select Sidebar options.
    Also update your theme to latest version, as there was issue in post slider.

    2. To add horizontal line between each of the widgets in the Sidebar, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #secondary .widget { 
        border-bottom: 1px solid #e6e6e6;
        margin-bottom: 20px;
        padding-bottom: 20px; 
    }
    @media screen and (min-width: 1190px) {
    #secondary .widget {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    }
    @media screen and (max-width: 1060px) {
    #secondary .widget {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    }
    in reply to: Logo after Headline #14459
    Sakin
    Keymaster

    @cabron_berlino: Sorry I don’t think I understand your request properly. I assume that you are trying to make logo at the left and then site title and description follow it. To do that you can just add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #site-logo {
        display: inline;
    }
    #hgroup.with-logo {
        clear: none;
        display: inline;
    }

    If you are talking about different. Then please share your screenshot of what you want to achieve and then I will give you the suggestion.

    in reply to: Updating to 1.5 #14458
    Sakin
    Keymaster

    @GAHC: I check in your account and it’s fine. Can you check your account at http://catchthemes.com/my-account/. If you cannot find it then you can send email directly to sales and account at http://catchthemes.com/my-account/

    in reply to: Script error #14457
    Sakin
    Keymaster

    @dbevarly: I don’t see any error in your client site. Do you have any screenshot of the error?

    in reply to: Problem with the IE #14434
    Sakin
    Keymaster

    @GAHC: This is handle by sales and I just received confirmation about your account. Can you check now. If you still have issue then please contact sales directly at http://catchthemes.com/my-account/. Sorry for the trouble.

    in reply to: Problem with the IE #14417
    Sakin
    Keymaster

    @GAHC: You haven’t update the Catch Everest Pro theme. Update that as well. After the update clear your cache and refresh your browser and check in.

    in reply to: Nested SubMenus #14416
    Sakin
    Keymaster

    @hilltopper06: Ok I got that thanks. We will fix that soon and update the theme.

    in reply to: Space Between Menu Tabs #14415
    Sakin
    Keymaster

    @Bookmama: I don’t think you can do that way. But you can add the following CSS in “Appearance => Theme Options => Custom CSS”.

    @media screen and (min-width: 1060px) {
    #header-menu ul.menu li { float: left; }
    #header-menu ul.menu a {
        padding-left: 54px;
        padding-right: 53px;
    }
    }
    in reply to: How to make list of subpages #14414
    Sakin
    Keymaster

    @Dudum: Sorry there is no automatic way to do it. Maybe you can search for plugin to do it auto.

    in reply to: Update to 2.6 #14412
    Sakin
    Keymaster

    @ashrafashraf: It’s your wish. Nothing much will happen. You can take a look at changelog for what you are missing.

    in reply to: Skype and uri #14411
    Sakin
    Keymaster

    @Evocom: We will release the update soon. For changelog see this http://catchthemes.com/changelogs/.

    in reply to: Everest Pro styling custom menus #14410
    Sakin
    Keymaster

    @Lolley: Nice yes menu will be better without border bottom.

    in reply to: Remove footer area space #14409
    Sakin
    Keymaster

    @Lorena Poling: This is not your image url http://www.tulegacy.org/?attachment_id=145. This is just attachment url and it will not work. The image url will be as below
    http://www.tulegacy.org/wp-content/uploads/2013/09/footer.jpg
    Yes your footer image is small. Try uploading the image of 1140px.

    in reply to: How to enable jetpack infinite scroll? #14408
    Sakin
    Keymaster

    @owen: But when I check in your site there is infinite scroll installed.

    in reply to: Space Between Menu Tabs #14402
    Sakin
    Keymaster

    @Bookmama: I see that you have added padding in left and right of menu item in your custom css box.

    #header-menu ul.menu a {
        padding-left: 50px;
        padding-right: 50px;
    }

    It’s not good as it will add padding in mobile devices as well. So, check it well. You can add that only for large devices like following.

    @media screen and (min-width: 1060px) {
    #header-menu ul.menu a {
        padding-left: 50px;
        padding-right: 50px;
    }
    }

    About the gab between menu tab. There is as the menu is center. You can remove that only by aligning menu either left or right. So, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to align it left.
    #header-menu ul.menu li { float: left; }

    in reply to: Catch Everest – Home page #14401
    Sakin
    Keymaster

    @karenstl: It’s showing home as you have added home page from “Settings => Reading”. In Reading settings there is “Front page displays” settings, you can just click on “Your latest posts” and save it.

    After that if it shows latest posts in your homepage and you don’t want then you can disable that from “Appearance => Theme Options => Homepage Settings => Homepage/Frontpage Settings”.

Viewing 20 posts - 10,581 through 10,600 (of 14,509 total)