Forum Replies Created

Viewing 20 posts - 8,521 through 8,540 (of 14,505 total)
  • Author
    Posts
  • in reply to: three column sidebar #21147
    Sakin
    Keymaster

    @Mark: For three columns layout. First you need to choose the layout from “Appearance => Theme Options => Layout Options => Default Layout” and then you need to add widgets in “Third Column Sidebar” from “Appearance => Widgets”.

    Yes, the lest sidebar will be smaller then the right sidebar. If you want same size then do let me know the size that you want to make it with your Site URI and then I will send your the custom css.

    in reply to: social media icons #21146
    Sakin
    Keymaster

    @Mark Argentino: Thanks Mark for your appreciation. Have a nice day.

    in reply to: remove default border from images #21145
    Sakin
    Keymaster

    @Michael Vigue: You need to add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .site { box-shadow: none; }

    in reply to: Centering Social Icons with Footer Text #21144
    Sakin
    Keymaster

    @Nancy: After you added social icon and text in the right. The Copyright information width is not enough so it floated below. You can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 769px) {
    #site-generator .copyright { width: 40%; }
    }
    in reply to: Photo Credit Help #21129
    Sakin
    Keymaster

    @Bouncedancer: Thanks and for RSS to show up as widget, there is default RSS widgets that you can add it from “Appearance => Widgets”.

    in reply to: social media icons #21128
    Sakin
    Keymaster

    @Mark Argentino: All the changes from Theme Options panel and child theme is all good. You will not loose your customization. Only core theme files such as functions.php, index.php, style.css and so on is not allowed to change directly. If changed directly you will loose it when you update the theme. You can change any function of parent theme with your child theme.

    in reply to: Centering Social Icons with Footer Text #21127
    Sakin
    Keymaster

    @Nancy: That is because when you add social icon in footer. It will push copyright down. Can you share screenshot of what you want. Then I can suggest you the css.

    in reply to: Tables & Borders #21126
    Sakin
    Keymaster

    @Nancy: I not that sure about it. But have seen plugin with adds responsive columns and also when you add table the code has to be responsive. So, either use responsive columns plugin or responsive tables plugin. I see the table code used in http://www.ipcrew.com/SHSTest/admissions/whyshs/ is not responsive and it’s of fixed width.

    You can search for free plugins at http://wordpress.org/plugins/

    in reply to: adjusting responsive layout #21120
    Sakin
    Keymaster

    @jp_grennier: You can check that from your responsive.css file.

    @media screen and (min-width: 1190px) { }
    @media screen and (max-width: 1060px) { }
    @media screen and (max-width: 960px) { }
    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : portrait) { }
    @media screen and (max-width: 767px) { }
    @media only screen and (min-width: 480px) and (max-width: 767px) { }
    @media screen and (max-width: 480px) { }
    @media screen and (max-width: 320px) { }
    in reply to: Centering Social Icons with Footer Text #21119
    Sakin
    Keymaster

    @Nancy: I don’t get it what you want do with this site. You can simply remove the social icon from Footer though “Appearance => Theme Options => Social Icons” and uncheck Enable Social Icons in Footer.

    Sakin
    Keymaster

    @Nancy: If you have already change your column width to 854px then you need to increase the size of image in the sizer to 854px. This will be difficult using default image form Feature Page or Post slider. But I see that you are using Catch Evolution Pro theme then you can just user Featured Image Slider and then upload the image as per your need.

    in reply to: add double lines to menu #21117
    Sakin
    Keymaster

    @kissthegroom: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to add border top and below the menu.

    #header-menu ul.menu {
        border-bottom: 1px solid #757575;
        border-top: 1px solid #757575;
    }
    in reply to: centre logo #21116
    Sakin
    Keymaster

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

    #header-left {
        display: block;
        float: none;
        width: 100%;
    }
    #site-logo {
        float: none;
        text-align: center;
    }
    #site-logo a {
        display: inline-block;
    }
    in reply to: Tables & Borders #21115
    Sakin
    Keymaster

    @Nancy: There is 2 ways to do that. 1. Is by adding the new div wrapper like below

    <div class="table-noboder">Your Table Code and test</div>'
    and then we can add specific to that class table-noboder in "Appearance => Theme Options => Custom CSS" box. 
    

    .table-noboder .entry-content table,
    .table-noboder .entry-content td { border: none; }`

    Or you can add page specific css directly. For example, your page http://www.ipcrew.com/SHSTest/admissions/whyshs/ is page id 139. So, just add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .page-id-139 .entry-content table, 
    .page-id-139 .entry-content td { border: none; }
    in reply to: Too much space on header #21114
    Sakin
    Keymaster

    @corvette: It’s because you have long menu in your header. You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #site-logo { padding-top: 15px; }
    #hgroup { padding-top: 30px; }
    #header-right { padding-top: 5px; }
    #hgroup-wrap { padding-bottom: 20px; }

    Note: If you want to reduces it more then you can reduce the padding as per your need.

    in reply to: social media icons #21113
    Sakin
    Keymaster

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

    .social-profile ul li.facebook a { background-position: 0 -44px; }
    .social-profile ul li.twitter a { background-position: -44px -44px; }
    .social-profile ul li.google-plus a { background-position: -528px -44px; }
    .social-profile ul li.linkedin a { background-position: -176px -44px; }
    .social-profile ul li.rss a { background-position: -88px -44px; }
    in reply to: Post excerpts within main content area? #21110
    Sakin
    Keymaster

    @craiginthebox: Sorry I don’t get it. Can you explain in reference to your site URI or make be share screenshot of what you want. Also to make changes to core theme files, you need to build child theme and work on it.

    in reply to: Footer Credit, Slider, and Comment Questions #21109
    Sakin
    Keymaster

    @ourag: Your all 3 question simple answer will be upgrade to Catch Evolution Pro version. See the theme instruction of pro version at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    1. You can remove Powered by :Wordpress and Theme: Catch Evolution from footer in Pro version through “Appearance => Theme Options => Footer Editor”
    2. Yes, you can option to user Featured Image Slider in Pro version. Where you can upload your independent images.
    3. In Pro version you can control comment for pages and posts from “Appearance => Theme Options => Comment Options”.

    in reply to: Embed video on home page #21108
    Sakin
    Keymaster

    @brewreviewcrew: It looks fine to me. Can you take screenshot when it’s not displaying and upload that image. Then you can send me that image URI so that I can see the issue. Right now it looks all good.

    in reply to: catchbox-pro install problem #21075
    Sakin
    Keymaster

    @Joost: That error is shown is someone try to hack in my directly accessing the file.

Viewing 20 posts - 8,521 through 8,540 (of 14,505 total)