Forum Replies Created

Viewing 20 posts - 6,921 through 6,940 (of 14,504 total)
  • Author
    Posts
  • in reply to: Decreasing space between Header Image/Page Content #41221
    Sakin
    Keymaster

    @sparklypony: Can you post in your site URL and also let me know how much you want to decrease then I can check in and send you Custom CSS.

    in reply to: Comment Author URL problem #41149
    Sakin
    Keymaster

    Yes mike for that you need to edit the code in catchbox_comment() function.

    in reply to: Vertical lines missing from tables #41143
    Sakin
    Keymaster

    @Vampyre777: That’s the design in Catch Everest Theme. If you want to add it then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #content table { border-left: 1px solid #e6e6e6; }
    #content th {
        border-right: 1px solid #e6e6e6;
        border-top: 1px solid #e6e6e6;
        font-weight: bold;
        padding-left: 10px;
    }
    #content td { border-right: 1px solid #e6e6e6; padding-left: 10px; }
    in reply to: Footer menu is not showing up #41139
    Sakin
    Keymaster

    @JUAN ARTURO: I hope you have not customize the core theme files. As footer menu is working fine in our server. So, can you check in details.

    Have you created custom menu form “Appearance => Menus” and assigned your custom menu to “Footer Menu” theme locations from “Appearance => Menus => Manage Locations”.
    Check this http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    in reply to: Comment Author URL problem #41138
    Sakin
    Keymaster

    Hi Mike,

    In Catch Box Theme comment form, we use get_comment_author_link() to add link of the commenter. If you want to change this, then you can build child theme and then create new functions.php file and just copy catchbox_comment() functions from Catch Box theme functions.php file and edit the URL as per your need.

    This is bit technical and you might need to hire a customizer for this.

    Regards,
    Sakin

    in reply to: Vertical lines missing from tables #41137
    Sakin
    Keymaster

    @Vampyre777: Please post in the URL where you have issue. Then I can check in and send you custom css.

    in reply to: changing main menu font color and shape #41075
    Sakin
    Keymaster

    @rshaw876: Ok then the css to change the font color in your main menu will be as below:

    #branding ul.menu a,
    #branding ul.menu ul a,
    #branding ul.menu li:hover > a,
    #branding ul.menu a:focus {
     color: #ffcc00; 
    }
    in reply to: changing main menu font color and shape #41056
    Sakin
    Keymaster

    @rshaw876: You can find the details Color Options in Catch Box Pro version. For free version, you need to send me the color code that you want to change to and then I will send you the css. Please post in your site URL as well.

    For example, you can try to change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box, which will change the font color in main menu.

    #branding ul.menu a {
        color: #eee;
    }
    in reply to: Removing Image from gallery #41055
    Sakin
    Keymaster

    Hi Andrew,

    I am not sure what you are you talking about. When you want to remove image from Gallery, yes you need to remove it form media.

    Regards,
    Sakin

    in reply to: browser and display flexibility #41054
    Sakin
    Keymaster

    @damjanza: It’s problem in all browsers with small screens. I see that you have added custom css but without following responsive design. So, when you change the CSS specially related to width, margin and padding, you need to be careful and write for specific screen sizes. You can see the style in responsive.css for more details.

    The basic mistake like the following css that you have added in “Custom CSS”, where you have added fixed width and margin. Which is good if you are viewing from the screen size higher then 1400px. But for small it will be problem. So, remove those css and it will be fine.

    .container {
      margin: 0 166px;
      position: relative;
      width: 1250px;
      height: auto;
    }
    in reply to: How to disable the Primary Menu #40975
    Sakin
    Keymaster

    @Prov: There is one option to disable it. Go to “Appearance => Theme Options => Header Options” and then check in “Disable Header Right Sidebar” and save changes.

    in reply to: Images on Sample Page #40969
    Sakin
    Keymaster

    @Siegfried: You can find the sample image URL in readme.txt file. So, you can find from there.

    in reply to: Header, Logo and Page Width #40968
    Sakin
    Keymaster

    Hello Nelson,

    I see that you have added large logo and site title. Then it why, the header right sidebar when down. The maximum you can do, is to add minus margin top in social search icon. For that you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #header .social-search {
        margin-top: -100px;
    }

    Regards,
    Sakin

    in reply to: Post Title Not Showing #40964
    Sakin
    Keymaster

    @Roy: If you want to add back title back only in pages then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    .type-page .entry-header { display: block; }

    in reply to: Adventurous Pro Issues #40963
    Sakin
    Keymaster

    @Brad: You can add link in Promotion button but I don’t get it what you mean by Aweber forum link. It accepts link.

    in reply to: Center Menu Catch Kathmandu #40957
    Sakin
    Keymaster

    @workwithleads: You you upgrade to pro version. Then you could have just create Custom Menu from “Appearance => Menus” and then assign Menu location to Secondary menu as shown in demo page http://catchthemes.com/demo/catch-kathmandu/. But you are using Free version where you only have option to add in primary menu.

    So, try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #header-right {
        clear: both;
        width: 100%;
    }
    #header-right .widget {
        text-align: center;
        width: 100%;
    }
    .header-sidebar .menu {
        float: none;
    }
    in reply to: Post image not attaching to links… #40951
    Sakin
    Keymaster

    @Michelle: Yes it will show featured image by default. So, changing the featured image is a good option. I see that you are using Jetpack plugin and if you have activate “Sharing or Publicize module” in Jetpack plugin that it automatically add featured image as Open Graph image. See this http://jetpack.me/tag/open-graph/

    in reply to: css theme options #40948
    Sakin
    Keymaster

    @jackson101: Post in your site URL and let me know what is not working. Then I can check in.

    in reply to: Move Secondary Menu Above Site Logo Image #40946
    Sakin
    Keymaster

    @Dyas: There is no option to add menu above the logo in Catch Box Free theme. If you had used Pro version then you could add menu item in “Header Top Sidebar” but it’s not there in free one.

    In free version, if you want to edit the secondary menu position then first you need to build child theme and create empty functions.php file in your child theme and then copy catchbox_header_menu function to your new child theme functions.php file and remove the Secondary menu code. Then you can create new functions with secondary menu with action hook catchbox_before_headercontent

    Note: You can not allowed to edit Footer Theme info in Free version. This is the only recolonization that we get for providing you all free theme and free support. I hope you understand it and add it back or upgrade to Pro version and remove it from Footer Editor.

    in reply to: Sub headline font size #40944
    Sakin
    Keymaster

    Hi Dona,

    I am confused as Catch Box Pro doesn’t have sub headline. So, can you add in your site URL and let me know it.

    Regards,
    Sakin

Viewing 20 posts - 6,921 through 6,940 (of 14,504 total)