Forum Replies Created

Viewing 20 posts - 2,021 through 2,040 (of 14,500 total)
  • Author
    Posts
  • 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.

    in reply to: Add website made from wordpress into social menu #68041
    Sakin
    Keymaster

    @Pia: It’s your browser cache issue. You can check this screenshot https://dl.dropboxusercontent.com/u/81234910/IMG_6223.PNG

    You can also check from this site which doesn’t cache it http://anonymouse.org/cgi-bin/anon-www.cgi/http://bonitatissue.com/

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

    @kurt: do you have screenshot of what you want. If you want whole background

    .widget_nav_menu .menu-demomenu-container { background-color: #003; }

    in reply to: Secondary menu not responsive #68009
    Sakin
    Keymaster

    @vdesc: Catch Evolution Free theme doesn’t have option to enable Secondary and Footer Menu in mobile devices. Sorry this option is there only in pro version.

    in reply to: Change primary menu and title font to Robotic #68001
    Sakin
    Keymaster

    @Isabella: You can add the following css:

    .no-sidebar.full-width .hentry {
        padding-top: 0;
        padding-bottom: 0;
    }
    in reply to: css grids built-in? #67995
    Sakin
    Keymaster

    @Andrew: Sorry we don’t have build in css columns. You can try to use Responsive Columns plugin or Responsive Table plugin. You can search at http://wordpress.org/plugins/

    in reply to: Change primary menu and title font to Robotic #67991
    Sakin
    Keymaster

    @Isabella: You haven’t copied that css properly. There is missing dot before hentry. Replace your css:

    /* Take away the grey
    border */
    hentry, 
    .widget, 
    .no-results, 
    #author-info, 
    #disqus_thread, 
    #content .error404 {
       border: none;
    }

    with the following:

    /* Take away the grey
    border */
    .hentry, 
    .widget, 
    .no-results, 
    #author-info, 
    #disqus_thread, 
    #content .error404 {
       border: none;
    }
    in reply to: Colour of the text of the secondary menu #67986
    Sakin
    Keymaster
Viewing 20 posts - 2,021 through 2,040 (of 14,500 total)