Forum Replies Created

Viewing 20 posts - 7,461 through 7,480 (of 14,507 total)
  • Author
    Posts
  • in reply to: Problem with Color Changing #32429
    Sakin
    Keymaster

    Hi Alain,

    There is two options.
    1. Either you can change the color by adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    .site {background-color: #d8f0fc;}
    #featured-post { border: none; }

    2. Or you can remove the margin by adding in the following css in “Appearance => Theme Options => Custom CSS” box.
    #featured-post { border: none; margin-bottom: 0; }

    in reply to: Menubar and footer width adjustment #32428
    Sakin
    Keymaster

    @probogus:
    1. OH you are changing from Full Width to 1200px center fit. You can add the following css in “Appearance => Theme Options => Custom CSS” box and it will adjust it.

    .site { display: block; margin: 0 auto; width: 1200px; }
    @media screen and (max-width: 1224px) {
    .site { width: 1024px;}
    }
    @media screen and (max-width: 1060px) {	
    .site { width: 900px;}	
    }
    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : landscape) {
    .site { width: 1024px;}	
    }
    @media screen and (max-width: 960px) {	
    .site { width: 700px;}	
    }
    @media screen and (max-width: 767px) {
    .site { width: 380px;}	
    }
    @media only screen 
    and (min-width: 480px) 
    and (max-width: 767px) {
    .site { width: 440px;}	
    }
    @media screen and (max-width: 479px) {
    .site { width: 300px;}	
    }
    @media screen and (max-width: 320px) {
    .site { width: 100%;}	
    }

    2. You can change the color code as per you need in the following css where I have change to white color code and add it in “Appearance => Theme Options => Custom CSS” box.
    #site-generator { background-color: #fff; }

    in reply to: Button colour change & how to centre content in sidebar #32425
    Sakin
    Keymaster

    @Ian: Sorry for the late reply. I try to open your site but it’s not opening. Can you check in your site URL. Once you correct this URL so that I can check in and will send you custom CSS to do that.

    in reply to: Theme Border Reduction #32422
    Sakin
    Keymaster

    @AKMARK5000: Sorry for the late reply. I check in your site but it’s still under test mode. So, I couldn’t check in. Now, I am giving you answer on the basis of default @AKMARK5000: Catch Box Pro theme design. Also I don’t know how much you want to reduce it.

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

    #main { padding: 1em 0 0; }
    #primary { margin: 0 0 0 1%; width: 64%; }
    #content { margin: 0; width: 100%; }
    #secondary { margin: 0 1% 0 0; width: 32%; }
    @media screen and (max-width: 960px) {
        #primary { margin: 0; width: 100%; }
    }
    in reply to: Image slider loading with no image displayed #32220
    Sakin
    Keymaster

    @Carlon: Thanks and the problem was solved with the latest version installation.

    in reply to: Safari Menu problems #32153
    Sakin
    Keymaster

    @Antoniodcard007: If you are using Empty in URL in our custom menu then in your Labels for that menu should be as
    <span onClick="return true">CENTERPIECE RENTALS</span>

    in reply to: Drop down categories #32151
    Sakin
    Keymaster

    @rgamlam: Yes, you can. I see that currently you are using default page menu. But you can build your custom menu from “Appearance => Menus” and add Pages, Posts, Categories, and Links as per your need. After you build the custom menu, you need to assign menu location from “Appearance => Menus => Manage Locations”. See thi screenshot http://www.pinterest.com/pin/548594798330820987/

    Read more details about Custom Menus at http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: How to hide page title on Home Page #32150
    Sakin
    Keymaster

    @dfwrgjeff: It’s just like the @Tim answered. You can just add the following css in “Appearance => Theme Options => Custom CSS” box to hide the page title.
    .page .entry-header { display: none; }

    in reply to: Image slider loading with no image displayed #32149
    Sakin
    Keymaster

    @Carlon: There is no image in your slider. I need to check in your admin section to find out the issue. I will email you and please reply me there.

    in reply to: Feature Image Slider not Working #32145
    Sakin
    Keymaster

    @Paróquia: I checked in your site and is working fine. Did you solve that issue?

    in reply to: separation between boxes #32144
    Sakin
    Keymaster

    @Sevian: Sorry I don’t get it what you mean. Do you mean to remove the padding below the your widgets then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #secondary .widget { padding-bottom: 0; }

    in reply to: Feature Request: Font Options for Homepage Headline #32143
    Sakin
    Keymaster

    @heatherlb: If you want to use Google Font then there is variety of Google Font Plugin at http://wordpress.org/plugins/.

    in reply to: How to put the Header Logo In Center #31977
    Sakin
    Keymaster

    @Alain: Thanks for your appreciation.

    in reply to: How to put the Header Logo In Center #31975
    Sakin
    Keymaster

    @Alain: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #header-left {
        width: 100%;
    }
    #site-logo {
        clear: both;
        display: block;
        float: none;
        margin: 0 auto;
        text-align: center;
    }
    #hgroup-wrap img {
        display: inline-block;
    }
    in reply to: How to use video in slider or featured content #31971
    Sakin
    Keymaster

    @helen: Not yet. But you can add video embed code in the place of Content Box where you add in the text.

    in reply to: too much space menu-content #31968
    Sakin
    Keymaster

    Hello Fermin,

    It should work. Please post in your site Title. Try adding in the following css in “Appearance => Theme Options => ustom CSS” box.
    #main { padding-top: 0; }

    For perfect match, we always need your site URL.

    Regards,
    Sakin

    in reply to: Modify Menu Options #31967
    Sakin
    Keymaster

    Hello Fermin,

    It’s really difficult to support when you site is offline. So, can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box, which will change your menu font family to Ariel Narrow and then center the menu.

    #header-menu #access { 
        font-family: "Arial Narrow", Arial, sans-serif; 
        text-align: center; 
    }
    #header-menu ul.menu li  { 
        display: inline-block; 
        float: none; 
        text-align: left; 
    }

    For advance support, we recommend you to use Hire a Customizer.

    in reply to: Disable header in Catch Kathmandu #31961
    Sakin
    Keymaster

    @Robert: It is not recommended to remove the Header Logo and Site Title both. So, the best option is to
    1. Go to “Appearance => Header” and select your larder header image and then you will see “Crop Header Image Options” and in that you can select all the image area and click on “Crop and Publish” and save changes. See this screenshot http://www.pinterest.com/pin/548594798331307420/
    2. Then again go to “Appearance => Header” and in “Header Text” uncheck “Show header text with your image” and save changes. This will remove the site title and description from you header. Now you will only have your header image/logo.
    3. Then you want to remove the Header Right Sidebar from “Appearance => Theme Options => Header Options” and select “Disable Header Right Sidebar” and save changes.
    4. Now you can simply remove the spaces around your header image by adding in the following css in “Appearance => Theme Options => Custom CSS” box.
    #hgroup-wrap, #site-logo { padding: 0; }

    The above option is good and best even for SEO purpose. But if you want to do as it is now and just want to remove the spaces. Then you can simply add the following css in “Appearance => Theme Options => Custom CSS” box.
    #hgroup-wrap { display: none; }

    in reply to: How to put the Header Logo In Center #31956
    Sakin
    Keymaster

    Hello Alain,

    Please send me your site URL.

    Regards,
    Sakin

    in reply to: Remove Featured Post Slider #31955
    Sakin
    Keymaster

    Hello Jason,

    Are you using Catch Box Free Theme. I assumed that as you have post in Catch Box Free Support Forum. You can just remove the Post IDs in “Appearance => Theme Options => Featured Post Slider => Slider Options” and then it will not show the post in your slider.

    Can you post in your site URL, it’s confusing. What do you mean by the page title above the menu. As above the menu, you only have Site Title. If you are trying to remove the site title then you can go to “Appearance => Header” and in Header Text uncheck “Show header text with your image” then save changes.

    Regards,
    Sakin

Viewing 20 posts - 7,461 through 7,480 (of 14,507 total)