Forum Replies Created

Viewing 20 posts - 2,021 through 2,040 (of 14,507 total)
  • Author
    Posts
  • in reply to: CSS for menu in sidebar #68124
    Sakin
    Keymaster

    @kurt: Thanks for your appreciation 🙂

    in reply to: Add second menu and breadcrumbs #68123
    Sakin
    Keymaster

    @barbyma31: Sorry I don’t get it what you mean by second menu equal to the live preview. Can you explain please.

    To add Yoast plugin breadcrumbs, you need to add that function in theme. For that you need to build child theme and the following function where you need it.

    <?php if ( function_exists('yoast_breadcrumb') ) 
    {yoast_breadcrumb('<p id="breadcrumbs">','</p>');} ?>

    See this for more details http://kb.yoast.com/article/245-implement-wordpress-seo-breadcrumbs

    in reply to: Space between page title and header image #68120
    Sakin
    Keymaster

    @Alvin: Sorry I am but confused. Can you explain in detail in reference with your site URL.

    in reply to: multicolor secondary menu #68119
    Sakin
    Keymaster

    @david: Yes, you can hide that in other pages. For, that first you need to use Catch Responsive Pro theme and then let me know it. After that I will send you custom css.

    in reply to: Post on front page #68118
    Sakin
    Keymaster

    @Ken: This is control my WordPress Settings. For this, you need to go to “Settings => Reading” and then change number in “Blog pages show at most”.

    in reply to: Warping text in menu #68117
    Sakin
    Keymaster

    @Ken: Please don’t post same question in 2 places. I have already answered you at http://catchthemes.com/support-forum/topic/warping-text-in-menu/

    in reply to: Bug on Home Page after lastes update #68116
    Sakin
    Keymaster

    @Artur: Can you check in your settings at “Appearance => Theme Options => Homepage/Frontpage Category Setting”. If it’s not this issue then post in your site URl and then I can check in.

    in reply to: Show Featured Image on Post Page #68111
    Sakin
    Keymaster

    @Gregory: If you want full image then replace your code

    <?php if( has_post_thumbnail() ):
    	if ( $options['sidebar_layout']= 'no-sidebar-full-width' ) {
    		the_post_thumbnail( 'featured-slider-larger' );
    	}
    	else {
    		the_post_thumbnail( 'featured-slider' ); 
    	} 
    endif; ?>

    With the following:

    <?php if( has_post_thumbnail() ):
    	the_post_thumbnail( 'full' ); 
    endif; ?>
    in reply to: Website STILL does not work on iPhone #68094
    Sakin
    Keymaster

    @Christine: It’s working fine in both iPhone5 and iPhone6 plus with latest version IOS 9.0.2. Can you fresh your browser and check in. Also you might want to clear cache in your browser can check in.

    in reply to: Featured post slider not moving #68074
    Sakin
    Keymaster

    @Michaela: Please post in your site URL so that I can check in. If it was working before and it’s not working now. This looks like more of plugin conflict. So, try disable plugin one by one and check in.

    in reply to: Page content and sidebar width #68073
    Sakin
    Keymaster

    @Michaela: So, if you want to user percentage. Then you need to use percentage for content and sidebar as well. So, you need to replace that previous css with the following css:

    #primary { width: 80%; }
    #secondary { width: 20%; }
    @media screen and (max-width: 960px) {	
    	#primary, #secondary { width: 100%; }
    }
    in reply to: Changing image border colour. #68072
    Sakin
    Keymaster

    @Grant: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” Box:
    #main .hentry img { background-color: #000; }

    in reply to: Warping text in menu #68071
    Sakin
    Keymaster

    @Ken: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .catchresponsive-nav-menu .sub-menu, 
    .catchresponsive-nav-menu .children,
    .catchresponsive-nav-menu .sub-menu a, 
    .catchresponsive-nav-menu .children a {
        width: 300px;
    }
    in reply to: Website STILL does not work on iPhone #68070
    Sakin
    Keymaster

    @Christine: Make sure you have clear you mobile browser cache clear. Refresh and check in. As when I check in your site, the slider is working fine. See this screenshot from iphone https://dl.dropboxusercontent.com/u/81234910/IMG_6224.PNG

    in reply to: Mobile Menu #68069
    Sakin
    Keymaster

    @Kim: Please add the following css in “Appearance => Theme Options => Custom CSS” box:
    body.sidr-open { position: fixed !important; }

    in reply to: Beginner Question on heading #68068
    Sakin
    Keymaster

    @Patricia: Thant’s nice. Thanks 🙂

    in reply to: CSS for menu in sidebar #68067
    Sakin
    Keymaster

    @kurt: Remove the following css:

    .menu-demomenu-container li {
        border-top: 1px solid White;
        border-bottom: 1px solid White;
        padding: 5px;
        padding-left: 10px;
        color: white:;
    }

    Then replace your css:

    /* Menu Widget Color */
    .widget_nav_menu li a {
        color: white;
    }

    with the following:

    .widget_nav_menu li a {
        border-bottom: 1px solid #fff;
        color: #fff;
        display: block;
        padding: 10px;
    }
    in reply to: Remove Search option in header. #68059
    Sakin
    Keymaster

    @Paul: Yes, it’s easy one… Cheers 🙂

    in reply to: Position of footer widget areas #68046
    Sakin
    Keymaster

    @Isabella: Footer Widgets area the divided in columns. If you only have activate Footer Area One, then you will have 100%. If you have widget in Footer Area One and Two then you will have 50% each in two columns and so on.

    So, first decide how many columns you want and then add widgets accordingly in the Footer Widgets Areas. After that send me your site URL and let me know which one you want on right. For that I will give you custom css.

    in reply to: CSS for menu in sidebar #68045
    Sakin
    Keymaster

    @kurt: I need to know what you want. I am but confused with this. I check in your site and you have implemented the css for your menu in the sidebar. Also you already have border bottom.

Viewing 20 posts - 2,021 through 2,040 (of 14,507 total)