Forum Replies Created

Viewing 20 posts - 7,301 through 7,320 (of 14,497 total)
  • Author
    Posts
  • in reply to: Google Chrome not displaying silder images correctly #33862
    Sakin
    Keymaster

    @sryu: Thanks for your appreciation and yes there has been bug report about rem in chrome and will be fixed soon by Chrome developers.

    in reply to: add image #33861
    Sakin
    Keymaster

    You footer size is 80px. You can increase the height of footer by adding in css like
    #site-generator { min-height: 100px; }

    But since this is responsive design site, so make the height increase only in large screen. then you can edit that css as:

    @media screen and (min-width: 961px) { 
    #site-generator { min-height: 100px; }
    }
    in reply to: add image #33750
    Sakin
    Keymaster

    Height depends on the height of the footer. So, I don’t know what the height of you site footer. You can measure it.

    in reply to: Reducing Margins in Header and Body, Search Box #33743
    Sakin
    Keymaster

    Hi Jason,

    For the top, you can change the following padding as per your need

    body { padding-top: 2em; }
    #header-content { padding-top: 2.5em; }

    For the bottom, you can change the following padding as per your need
    #header-content { padding-bottom:2.5em; }

    After you change these padding, you can add it in “Appearance => Theme Options => Custom CSS” box.

    Regards,
    Sakin

    in reply to: Move page title #33741
    Sakin
    Keymaster

    @drlapco: What do you want to do it? It uses the class entry-title and it has parent class as post-2 and top parent as ID as content

    in reply to: Google Chrome not displaying silder images correctly #33738
    Sakin
    Keymaster

    @sryu: Yes it must be chrome rem issues. But I though this has already been fixed by Chrome. Are you using latest version of Chrome.

    in reply to: Need assistance with Menu #33737
    Sakin
    Keymaster

    @dfwrgjeff: You can adjust the margin bottom in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.
    #featured-post { margin-bottom: 50px; }

    in reply to: add image #33735
    Sakin
    Keymaster

    Hello A.J.

    You image http://www.idaat.se/wp-content/uploads/2014/06/5567852_xxl.jpg is too large that is why it is just showing the top orange color of that image. So, you need to reduce that image with maximum width of 1000px ad height of your footer. Then it will work as you desire.

    Regards,
    Sakin

    in reply to: Can't Acess Admin on my Site!! Help! #33685
    Sakin
    Keymaster

    @Kevin: Yes this is server related issue. So, send this link error message to your Website Hosting Support and they will be able to fix it.

    in reply to: Google Chrome not displaying silder images correctly #33684
    Sakin
    Keymaster

    Hi Sbartsch,

    This is really strange as i try refresh and check in your site at least 20 time but no issues found in Chrome. I will try tomorrow as well and see if I can generate that issue. When you have this issue does your site get zoomed in.

    For now can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
    body > div { font-size: 1.4rem; }

    Regards,
    Sakin

    in reply to: Catch Box Pro not reproducing correctly on Android #33681
    Sakin
    Keymaster

    @luismarioochoa: So there in now option to do that. As this is not another mobile theme. If you want to add separate mobile theme then you can use Jetpack Plugin and active mobile module or WPtouch Mobile Plugin

    in reply to: Reduce and remove empty space #33680
    Sakin
    Keymaster

    @real_makkoy: I see there is issue with the custom css that you have added in. I found one HTML code in Custom CSS box. This custom css box is only for adding additional css not html code. So, remove the following HTML code from “Appearance => Theme Options => Custom CSS” box.
    <a href="http://www.bloglovin.com/blog/11914493/?claim=f9k83uevvxp">Follow my blog with Bloglovin</a>

    in reply to: font size keeps appearing bigger than it should #33679
    Sakin
    Keymaster

    Hello Stephanie,

    This is known issue from Chrome browser and Google is expected to fix in new version update. It has issue with rem font value. So, the temporary fix until the new version of Chrome is to add the following css in “Appearance => Theme Options => Custom CSS” box.
    body > div { font-size: 1.4rem; }

    Regards,
    Sakin

    in reply to: removing a few things from home page #33678
    Sakin
    Keymaster

    Hi Helen,

    To get sidebar in your Hompepage, you need to add in either Static Front page or Enable Latest post.

    For adding Static Front Page, go to “Settings => Reading” from your WordPress Dashboard and then in “Front page displays” click on “A static page (select below)” and then in “Front page” choose the Page that you want to display in your homepage with your sidebar,.

    For adding Latest post, you can just go to “Appearance => Theme Options => Homepage Settings => Homepage / Frontpage Settings” and then check “Enable Latest Posts?” and save changes.

    Regards,
    Sakin

    in reply to: Remove blue Log In link #33677
    Sakin
    Keymaster

    @theresem: Maybe it is showing when you login to your site. Check in your site after you log out from our site.

    in reply to: how to add link in fetaured content #33676
    Sakin
    Keymaster

    Hello Djapeto,

    You can just add HTML hyperlink code. See this http://www.w3schools.com/html/html_links.asp

    Regards,
    Sakin

    in reply to: Title widgets taken H3 tag #33675
    Sakin
    Keymaster

    Hi Philippe,

    We made this Catch Box theme to take H3 tag for Widget title. This cannot be change from CSS. Also why do you need to change it.

    If you really need to change then you need to create child theme and then create empty functions.php file in your child theme and then add the following code

    function catchbox_widgets_init() {
    	
    	register_widget( 'catchbox_adwidget' );
    
    	register_sidebar( array(
    		'name' => __( 'Main Sidebar', 'catchbox' ),
    		'id' => 'sidebar-1',
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' => "</aside>",
    		'before_title' => '<h2 class="widget-title">',
    		'after_title' => '</h2>',
    	) );
    
    	register_sidebar( array(
    		'name' => __( 'Footer Area One', 'catchbox' ),
    		'id' => 'sidebar-2',
    		'description' => __( 'An optional widget area for your site footer', 'catchbox' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' => "</aside>",
    		'before_title' => '<h3 class="widget-title">',
    		'after_title' => '</h3>',
    	) );
    
    	register_sidebar( array(
    		'name' => __( 'Footer Area Two', 'catchbox' ),
    		'id' => 'sidebar-3',
    		'description' => __( 'An optional widget area for your site footer', 'catchbox' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' => "</aside>",
    		'before_title' => '<h3 class="widget-title">',
    		'after_title' => '</h3>',
    	) );
    
    	register_sidebar( array(
    		'name' => __( 'Footer Area Three', 'catchbox' ),
    		'id' => 'sidebar-4',
    		'description' => __( 'An optional widget area for your site footer', 'catchbox' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' => "</aside>",
    		'before_title' => '<h3 class="widget-title">',
    		'after_title' => '</h3>',
    	) );
    }
    in reply to: Can't Acess Admin on my Site!! Help! #33673
    Sakin
    Keymaster

    Hello Kevin,

    What is your problem when you try to access you admin section. We don’t have control of your WordPress admin section.

    Have you recently added new plugin or updated the plugin then try deleting that plugin. For this type of issue, you need to contact your Hosting Server support team.

    Regards,
    Sakin

    Sakin
    Keymaster

    @prajakta: This is simple. So, you want to remove the Catch Kathmandu theme responsive.css file and then add your own responsive.css file in your child theme. Then first, create blank functions.php in your child theme and add the following code.

    <?php
    /**
     * Catch Kathmandu Child functions and definitions
     */
    // Remove Parent theme responsive.css and adding new responsive.css in child theme 
    function catchkathmandu_child_enqueue_scripts() {
        wp_dequeue_style( 'catchkathmandu-responsive' );
    	wp_enqueue_style( 'catchkathmandu-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' );
    }
    add_action( 'wp_enqueue_scripts', 'catchkathmandu_child_enqueue_scripts', 11 );
    Sakin
    Keymaster

    @prajakta: Sorry I don’t think moving the theme-options.php to child theme will work as it depends on so many files. So, it will be better that you create additional option in your child theme or use plugin like Options Framework to add additional option in your child theme.

Viewing 20 posts - 7,301 through 7,320 (of 14,497 total)