• I am having a problem on my site that I can not seem to fix. The product titles do not properly fit in their allotted spaces. Only the first word of the titles show up on the screen! You can see this on the product section of the homepage and by looking at the “shop” page.

    beaubrummellformen.com

    Does anyone know how I can fix this issue?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    #mpcth_page_wrap .woocommerce .products .product .mpcth-post-content, .woocommerce-page #mpcth_page_wrap .products .product .mpcth-post-content {
        position: relative;
        z-index: 3;
        box-shadow: 0 -2px 6px -2px rgba(0, 0, 0, 0.1);
        /* overflow: hidden; */
        height: 5.25em;
        font-size: 1.083em;
        background: #ffffff;
        padding: 0;
        margin: 0;
    }

    In your CSS, comment out or remove “overflow: hidden”

    Thread Starter devar112

    (@devar112)

    Thanks for the reply sterndata!

    No where in my css does it mention anything about overflow, not so sure what to do here.

    I’m fairly new to wordpress and to css

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    that is probably in your theme someplace

    if your theme has a “custom css” link, use it. If not, install the plugin “simple custom css”.

    Then add this to the new custom CSS file:

    #mpcth_page_wrap .woocommerce .products .product .mpcth-post-content, .woocommerce-page #mpcth_page_wrap .products .product .mpcth-post-content {
        overflow: visible;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing or Manipulating Product Title Size’ is closed to new replies.