Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1353526
    lisacole1
    Participant

    Hi
    On this page
    https://www.millinersguild.co.uk/courses/

    No thumbnails are showing

    I used this code, have I missed something? Huge thanks!

    [product_category category="courses" per_page="12" columns="4" orderby="price" order="asc"]

    #1353566
    Thai
    Moderator

    Hi There,

    Please find this CSS:

    .single-post .entry-featured, .single-x-portfolio .entry-featured, .page .entry-featured {
        display: none;
    }

    And change to this:

    .single-post .entry-featured, .single-x-portfolio .entry-featured {
        display: none;
    }

    Hope it helps 🙂

    #1353587
    lisacole1
    Participant

    perfect, thank you!

    #1353611
    Thai
    Moderator

    If you need anything else please let us know.

    #1378155
    lisacole1
    Participant

    thank you
    I want to get rid of the big featured image on posts and pages but when I use this
    .page .entry-featured { display: none; }
    the thumbnails vanish from the woo commerce category
    https://www.millinersguild.co.uk/holly-young-2/

    Also, please could you tell me if it is possible to get rid of the border around the images in the category (that is below all the text). If that is out of your remit I totally understand.

    #1378177
    Joao
    Moderator

    Hi There,

    Please try:

    .page .entry-featured { display: none; }
    
    .page.woocommerce .entry-featured { display: block !important; }

    And

     .gallery-item {
       
        border: 0 !important;
    }

    Let us know how it goes,

    Joao

    #1378187
    lisacole1
    Participant

    sorry, that hides the thumbnails.
    I’m getting tangled up in code here, this is what I have:

    /*correct social media colours*/
    .x-social-global a.facebook{
            background-color:#3b5998}
    
    .x-social-global a.twitter{
            background-color:#00abf0}
    
    .x-social-global a.google-plus{
            background-color:#d84b35
    }
    
    .x-social-global a.linkedin{
            background-color:#1a81ad}
    
    .x-social-global a.xing{
            background-color:#006567}
    
    .x-social-global a.foursquare{
            background-color:#0f6bb6}
    
    .x-social-global a:hover.youtube{
            background-color:#cc181e
    }
    
    .x-social-global a:hover.vimeo{
            background-color:#44bbff}
    
    .x-social-global a.instagram{
            background-color:#3f729b}
    
    .x-social-global a.pinterest{
            background-color:#cd1f28
    }
    
    .x-social-global a.dribbble{
            background-color:#ea4b8b
    }
    
    .x-social-global a.flickr{
            background-color:#ff0084
    }
    
    .x-social-global a.behance{
            background-color:#1769ff}
    
    .x-social-global a.tumblr{
            background-color:#36465d}
    
    .x-social-global a.soundcloud{
            background-color:#ff5500
    }
    
    .x-social-global a.rss{
            background-color:#fe6e00
    }
    
    .single-post .entry-featured, .single-x-portfolio .entry-featured {
        display: none;
    }
    
    .x-portfolio .entry-cover-content > span {
        display: none;
    }
    
    .x-portfolio .entry-info {
    width: 100%; /* makes the content fullwidth */
    }
    
    .x-portfolio .entry-extra {
    display: none;
    }
    
    /* Els: Portfolio item: no sidebar */
    .x-portfolio .entry-info {
    width: 100%;
    }
    
    .x-portfolio .entry-extra {
    width: 100%;
    margin-top: 10px;
    }
    
    .single-x-portfolio .entry-featured {
        display: none;
    }
    
    .x-iso-container-portfolio .entry-featured {
        border: none;
    }
    
    .single-x-portfolio .p-meta,
    .single-x-portfolio .entry-extra ul {
      display: none !important;
    }
    .x-portfolio .entry-cover-content span {
      display: none;
    }
    .x-portfolio .h-extra.skills {
      display: none;
    }
    
    .single-x-portfolio .entry-extra {
    	display: none;
    }
    .single-x-portfolio .entry-info {
    	width: 100%;
    }
    
    .x-btn, .x-btn:hover, .button, .button:hover, [type="submit"], [type="submit"]:hover {
    text-shadow: none;
    }
    
    .page .entry-featured { display: none; }
    
    .page.woocommerce .entry-featured { display: block !important; }
    #1378191
    lisacole1
    Participant

    sorry, I had a tidy up, this might make it easier to read:

    
    /* portfolio no sidebar, no big featured image and remove tags*/
    
    .single-post .entry-featured, .single-x-portfolio .entry-featured {
        display: none;
    }
    
    .x-portfolio .entry-cover-content > span {
        display: none;
    }
    
    .x-portfolio .entry-info {
    width: 100%; /* makes the content fullwidth */
    }
    
    .x-portfolio .entry-extra {
    display: none;
    }
    
    /* Els: Portfolio item: no sidebar */
    .x-portfolio .entry-info {
    width: 100%;
    }
    
    .x-portfolio .entry-extra {
    width: 100%;
    margin-top: 10px;
    }
    
    .single-x-portfolio .entry-featured {
        display: none;
    }
    
    .x-iso-container-portfolio .entry-featured {
        border: none;
    }
    
    .single-x-portfolio .p-meta,
    .single-x-portfolio .entry-extra ul {
      display: none !important;
    }
    .x-portfolio .entry-cover-content span {
      display: none;
    }
    .x-portfolio .h-extra.skills {
      display: none;
    }
    
    .single-x-portfolio .entry-extra {
    	display: none;
    }
    .single-x-portfolio .entry-info {
    	width: 100%;
    }
    
    /* no big featured  image on pages */
    .page .entry-featured { display: none; }
    
    .page.woocommerce .entry-featured { display: block !important; }
    #1378735
    Nabeel A
    Moderator

    Hi again,

    Please remove the following code first:

    .page .entry-featured {
        display: none !important;
    }

    And keep the following code:

    .single-post .entry-featured, .single-x-portfolio .entry-featured, article.type-page .entry-wrap > .entry-featured {
        display: none !important;
    }

    Let us know how this goes!

    #1379363
    lisacole1
    Participant

    brill, that has done it, thank you!

    #1379467
    Christopher
    Moderator

    You’re welcome.

  • <script> jQuery(function($){ $("#no-reply-1353526 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>