Forum Replies Created

Viewing 20 posts - 9,741 through 9,760 (of 14,510 total)
  • Author
    Posts
  • in reply to: Objects no longer aligned in page #17237
    Sakin
    Keymaster
    in reply to: Homepage Featured content options #17219
    Sakin
    Keymaster

    @cpuss: You can remove the top padding of header right sidebar by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header-right { padding-top: 0; }

    Abut the Internet Explorer. I check in and it is working fine on my side. Which IE version you are browsing from.

    in reply to: word splits badly at the end of line #17218
    Sakin
    Keymaster

    @Kardaya: Can explain please. I don’t get it what you are talking about. Maybe you can share your screenshot.

    in reply to: Changing Type of Font and size for my pages #17217
    Sakin
    Keymaster

    @adminleah: It’s because you have added the width to 200px in your Custom CSS box. So, find the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 1190px) {
    #header-right { float: left; }
    #secondary { width: 200px; }
    }

    And replace with the following, where I have remove 200px width.

    @media screen and (min-width: 1190px) {
    #header-right { float: left; }
    }
    in reply to: Facebook All #17216
    Sakin
    Keymaster

    @Ralph177: I guess the plugin need the full content view to show it. So, go to “Appearance => Theme Options => Content layout” and set it to “Show full content”.

    in reply to: Featured Post Slider Questions #17215
    Sakin
    Keymaster

    @rbrek: Cheers 🙂

    in reply to: Issues with images & gallery #17213
    Sakin
    Keymaster

    @jp_grennier: For individual image like http://jpgrennier.com/artwork/, I see that you have one image align left and another right with paragraph code. That is why it is not working properly. Image in paragraph with align left is supported to be with text paragraph. In a paragraph, you can only have one image. Try adding in the full image or large image with center align.

    About your Gallery page http://jpgrennier.com/writing/, I see that you have added 2 column layout gallery. For which your image is small. Change the thumbnail image size from “Settings => Media”. Then after you change the size, you need to regenerate the images for old images, as you just changed the size. To do that you need to install plugin “Regenerate Thumbnail” and regenerate the image. This will make your image big as per you need in the layout. You current image size is only suitable for 4 column gallery.

    There is another cool way to create Gallery. If you see the example at http://catchthemes.com/demo/catch-everest/gallery/. This is just a normal gallery after installing “Jetpack” plugin and activating Carousel and Tiled Galleries module of Jetpack plugin.

    in reply to: Adjusting spacing below the Homepage Featured Content area #17212
    Sakin
    Keymaster

    @ekemaorjet: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #featured-post .post { padding-bottom: 0; }

    in reply to: Remove Search From Header #17201
    Sakin
    Keymaster

    @mrabang: That’s header right sidebar default. If you want to disable it, then go to “Appearance => Theme Options => Header Options” and then check “Disable Header Right Sidebar” and save it.

    in reply to: Change colour of page/post titles #17200
    Sakin
    Keymaster

    @Sarah: You can change the color code as per you need and then add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-title, .entry-title a { color: #222; }

    in reply to: Facebook All #17199
    Sakin
    Keymaster

    @Ralph177: I don’t get it what you mean. Can you share with me your site URL and then I can check in and see what are you talking about.

    in reply to: Header Background #17198
    Sakin
    Keymaster

    @Steve: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .site, #masthead { background-color: transparent; }
    #main { background-color: #fff; }
    in reply to: white space in footer #17197
    Sakin
    Keymaster

    @suchi: Add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #supplementary .widget-area {
        text-align: center;
        width: 100%;
    }
    in reply to: Translate to Spanish #17196
    Sakin
    Keymaster

    @caminale: It should work. Check out http://codex.wordpress.org/WordPress_in_Your_Language

    No, you have to create new .mo and .po file. It’s always theme specific.

    in reply to: Featured post slider not working #17183
    Sakin
    Keymaster

    @thivi: Yes that will enable you for support but I don’t recommend you changing that. Also when you want to edit core theme file, you need to build child theme and edit it. As all the core theme files edited directly will be reverted back to original once you update the theme.

    in reply to: Footer size and titles in slider #17181
    Sakin
    Keymaster

    @oroblin: You should add your site URL in order to check in the details.
    For footer height the custom css in “Appearance => Theme Options => Custom CSS” should work.

    #site-generator .site-info {
        padding: 10px 0;
    }

    For paragraph, you can add the following CSS in “Appearance => Theme Options => Custom CSS” should work.

    p {
        margin-bottom: 20px;
    }

    But be careful on these custom css code, as these css will be added to all devices and might effect your mobile devices spacing. So, if you want to change only for large screen then add as below:

    @media screen and (min-width: 1061px) {
    #site-generator .site-info {
        padding: 10px 0;
    }
    p {
        margin-bottom: 20px;
    }
    }
    in reply to: Header-white space #17179
    Sakin
    Keymaster

    @K.S: Yes, you will loose your custom code that you have added in core theme files, as all the core theme files will be reverted back to original even when you update it. So, we don’t recommend to edit any core theme files. You can customize the theme from “Appearance” tab. All these customization will be not be reverted.

    For now can you just replace footer.php with the original and check in. You can actually remove the footer copyright from “Appearance => Theme Options => Footer Editor” Box. You don’t need to edit footer.php file.

    in reply to: Linking to Posts #17177
    Sakin
    Keymaster

    @lizzy39: You cannot have same like that but you have Posts page where you posts are listed with image and excerpt text and link to full page.

    in reply to: Responsive Menu #17176
    Sakin
    Keymaster

    @CWG32813: You cannot do that. It’s designed like that. It will show all the menus. But when I check in your site from my iPhone, it was easy to navigate.

    If you like to change to select box then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 767px) {
    .sb-holder { display: none; }
    .tinynav { display: block !important; width: 100%; }
    }
    in reply to: Slider not working #17175
    Sakin
    Keymaster

    @Stefing: I think you didn’t read instruction clearly. You are not supposed to edit any core theme files and replacing the image from FTP in a bad method and you will loose your image once you update the theme. As all the core files edited will be reverted back when you update the theme.

    I see that you are using Catch Everest Free theme. In our free themes,you only have option to user Featured Post Slider from “Appearance => Theme Options => Featured Post Slider”. For this, you first need to create a post and add the Featured Image in your post. As this featured image will be used in slider image. Then you need to get the Post ID and add it in “Appearance => Theme Options => Featured Slider => Featured Post Slider Options”. See this screenshot on how the IDs have been added http://www.pinterest.com/pin/548594798329984427/

Viewing 20 posts - 9,741 through 9,760 (of 14,510 total)