• Resolved CENTRY

    (@sonenterprises)


    I’m so grateful for your plugin, but the titles of the articles are too long and the font to kinda large. But I have a couple of questions please:

    – How do I remove the product description from the title. For example, how do i change “NEVER – Men’s T-Shirt” to just say, “Never”

    – How do I make the title font size smaller?

    – How do I change the color of the “add to cart” button

    – how do I adjust the front, side and back thumbnails so they’re on the same row, or remove them all together?

    Thanks so much!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Thimo Grauerholz

    (@pr3ss-play)

    Hi,

    you can disable the product name addons by adding the following code to “Custom CSS” of Spreadplugin, in the Spreadplugin settings page:

    
    .product-name-addon {display: none}
    

    Smaller title font size (e.g. 20px:

    
    .spreadplugin-items h3 {font-size: 20px}
    

    Button color:

    
    .spreadplugin-article button[type=submit], .spreadplugin-article input[type=button], .spreadplugin-article input[type=submit], .spreadplugin-article-detail input[type=submit] {
        background-color: black;
        color: #fff;
    }
    

    Thumbnails aligment:

    
    .spreadplugin-article .views-wrapper {
    clear:both
    }
    

    Have fun!

    Thread Starter CENTRY

    (@sonenterprises)

    Thanks so much Thimo!
    I inserted that code and the title font size and button color was adjusted which is great!

    However, the products still aren’t in an even line. Any more thoughts?
    Once again the site is http://iamblessed.info

    Thanks so much for your help!

    Thread Starter CENTRY

    (@sonenterprises)

    And is it possible to center the titles over the product? Thanks!

    Plugin Author Thimo Grauerholz

    (@pr3ss-play)

    
    .spreadplugin-article {
    vertical-align:top
    }
    
    .spreadplugin-article .views-wrapper {
        clear: left;
    }
    
    .spreadplugin-article .color-wrapper {
    min-height:75px
    }
    
    .spreadplugin-items h3 {
        text-align: center;
    }
    

    this should do it 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove Product Description from titles’ is closed to new replies.