Forum Replies Created

Viewing 20 posts - 5,641 through 5,660 (of 14,504 total)
  • Author
    Posts
  • in reply to: How Do I Enlarge Logo Adventure Pro #48542
    Sakin
    Keymaster

    @Kim: So what you want to do with that. If you like that large header in your mobile, then you can replace your css with the following css:

    #site-logo img, #masthead.fixed-header #site-logo img {
        max-height: 100px !important;
    }
    in reply to: Hyperlinkcolor on the "Home" page is bugged #48541
    Sakin
    Keymaster

    @schnarchn: The blue link color in homepage is coming from your “YOP Poll” plugin. See this file ultrecs.de/wp-content/plugins/yop-poll/css/yop-poll-admin.css

    So, you need the change color code in that plugin. If you want to force color in link then you can also add in extra color code CSS in “Appearance => Theme Options => Custom CSS” box.
    #main a { color: #ccfd0e; }

    in reply to: How can I get rid of grey lines?? #48531
    Sakin
    Keymaster

    @horriblehomemaker: You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove border under header, around photo and separating posts:

    #page {
        background-color: #fff;
    }
    img[class*="align"], img[class*="wp-image-"], #content .gallery .gallery-icon img, img.wp-post-image, img.attachment-thumbnail {
        border: none;
        padding: 0;
    }
    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        border-bottom: none;
        padding-bottom: 0;
    }
    in reply to: No download link for latest version of CatchBox Pro #48530
    Sakin
    Keymaster

    @Robertf: Sorry to know that. But for this type of issue please contact out sales directly at http://catchthemes.com/contact-us/. They will handle it fast. I have already informed them. So, you should be able to download it anytime soon.

    Sorry for the trouble.

    in reply to: Add External Font Family #48529
    Sakin
    Keymaster

    @Kim: This is not a web font so there is no easy way to just install it. You cannot just add css and use it. You need to first embed the font then download that embed font. Build Child theme and use those script. Also font embedding will make your site little show.

    So, you can generate that font from fontsquirrel.com/tools/webfont-generator and then embed it using Font Face. See this css-tricks.com/snippets/css/using-font-face/

    Also check out plugins like “Use Any Font”

    in reply to: Do I need more SEO stuff? #48528
    Sakin
    Keymaster

    @Salome: You question is more related to SEO then Theme. You can hire SEO Consultant to do SEO for your site.

    By default WordPress site are optimized for Search Engine and yes, WordPress SEO by Yoast is one of the best plugin to do SEO. Refer to WordPress for SEO guide, they have tell you more about that. You can also build XML site map from that plugin and as per my knowledge that plugin also submit your site to google, yahoo and bing. SEO is something that cannot be accomplish in a day. It takes months and months of hard work to bring up your site.

    To show your site in Google Analytics, you need to verify your site by adding google analytic code in your site. You can add that code in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Footer Codes”

    Refer to :
    yoast.com/articles/wordpress-seo
    kb.yoast.com/category/42-wordpress-seo

    in reply to: line between secondary menu and slider #48514
    Sakin
    Keymaster

    @Gerald: Then unwanted pad around the slider image is there as your image is smaller then the page width. Your slider image width is just 1024px where as the required image size is width 1280px.

    in reply to: Feature Image Size #48512
    Sakin
    Keymaster

    @Dennis: I see that you have selected image options as “Full Image” in “Content Featured Image Options”. So, for this we don’t have any image size recommendation. This will just load the image that you have uploaded.

    Sakin
    Keymaster

    @nac2311: Where did you add that. As When I check in your site marcomsonline.co.uk, I see the following css in your Custom CSS box:
    .hentry ul { list-style: outside none square; }

    So, you can either replace that with
    ul { list-style: outside none square; }

    Or
    .hentry ul, .widget ul { list-style: outside none square; }

    in reply to: Adding additional "Optional Sidebars" #48478
    Sakin
    Keymaster

    @Maria: Sorry I don’t get it what you mean. Please post in your site URL so that I can check in. Also for links you can create Menus and add custom links to your menu from “Appearance => Menus”. Then you can add that custom menu in your Widgets from “Appearance => Widgets”

    in reply to: Completely remove primary menu or… #48477
    Sakin
    Keymaster

    @peniko: Please go to “Appearance => Theme Options => Header Options”, then check to disable Header Right Sidebar and save changes.

    in reply to: removed border #48476
    Sakin
    Keymaster

    @alemoy: For changing the color of hover and active menu, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #secondary-menu ul.menu li:hover > a,
    #secondary-menu ul.menu a:focus,
    #secondary-menu .menu .current-menu-item > a,
    #secondary-menu .menu .current-menu-ancestor > a,
    #secondary-menu .menu .current_page_item > a,
    #secondary-menu .menu .current_page_ancestor > a {
        background-color: #1b5F7d;
        color: #fff;
    }

    Sorry we don’t recommend hanging the font size. But if you really want then you can remove the font size in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #secondary-menu ul.menu {
        font-size: 16px;
    }
    in reply to: line between secondary menu and slider #48475
    Sakin
    Keymaster

    @Gerald: The the previous css that I gave your for full width conflict with homepage. So, can you replace the following css:

    .no-sidebar-full-width #main {
        padding-left: 0;
        padding-right: 0;
    }

    With:

    .page.no-sidebar-full-width #main {
        padding-left: 0;
        padding-right: 0;
    }
    in reply to: Front page did not change with rest of the site #48474
    Sakin
    Keymaster

    @pmk: This is not related to your browser cache but it the server cache from your WP Super Cache Plugins. So, go to WP Super Cache plugin settings and clear your cache.

    in reply to: Change location of Blog post featured images #48473
    Sakin
    Keymaster

    @Todd: We have added that option in Catch Flames Pro theme and Simple Catch Theme has that option in default. But Catch Kathmandu Pro theme was not made to design like that.

    Ok I have one quick CSS hack to do it. First, change all the featured image on those post. Try to upload small square or portrait featured image. Maybe the size of 150px by 150px. When you upload the smaller featured image, the script take the original small featured image and also your site will load fast. Then add the following css in “Appearance => Theme Options => Custom CSS” box:

    .blog .hentry, .archive .hentry {
        height: 1%;
        overflow: hidden;
    }
    .blog .featured-image, .archive .featured-image {
        float: left;
        margin-right: 4%;
        width: 20%;
    }
    .blog .entry-container, .archive .entry-container {
        float: right;
        width: 76%;
    }
    in reply to: Blog page set up #48472
    Sakin
    Keymaster

    @lorencowka: That’s nice. Thanks 🙂

    in reply to: Slider pics #48471
    Sakin
    Keymaster

    @Mike: Yes, you change it. Catch Flames free theme has option to use Featured Page Slider to highlight you page.
    1. First you need to create a Page and then add Featured Image (http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/) to the Page.
    2. Go to “Appearance => Theme Options => Featured Slider” from your WordPress Dashboard
    3. Under Slider Options Select Slider Type as “Featured Page Slider”. Here you can also change the number of slides, slider effects and timing
    4. Then under Featured Page Slider Options, select the pages and save changes.

    in reply to: Home-page Headline | Bold Font? #48452
    Sakin
    Keymaster

    @sbartsch: Yes sure, you can simply add the following css in “Appearance => Theme Options => Custom CSS” box:
    #homepage-message { font-weight: bold; }

    in reply to: Menu not appearing on mobile phone #48451
    Sakin
    Keymaster

    @bigoslesli: Yes you got it. Thanks for sharing solution that you got.

    Sakin
    Keymaster

    @nac2311: I don’t see you are using the new css. You are still using old css.

Viewing 20 posts - 5,641 through 5,660 (of 14,504 total)