• Resolved rosyg

    (@rosyg)


    Hello,

    I’m trying to find the CSS to customize the title (in box view), but I can’t find it. I don’t want it to be uppercase but I tried changing them all to “text-transform: none” in frontend.css and it doesn’t work. How can I change the style of the titles?

    Also, some of my titles are cut. How can I change the length allowed for titles?

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @rosyg,

    You are adding the wrong value in text-transform. Please add unset instead of none or use lowercase or uppercase as per your needs.

    .wpem-event-title {
        text-transform: unset;
    }

    Thank you

    Thread Starter rosyg

    (@rosyg)

    Hello,

    Thank you for your reply. I got it to work.

    Any way to bypass the caracter limit in the title (in box view)? Titles get cut because they’re limited to 2 lines.

    Thank you!

    Hi @rosyg,

    For basic design features, we have made overflow: hidden. You can override CSS from your side by assigning proper value

    .wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-infomation .wpem-event-details .wpem-event-title .wpem-heading-text{
    overflow:hidden
    }
    

    Thank you

    Thread Starter rosyg

    (@rosyg)

    Thank you! That works but the text overlaps over the date that is right under it. How can I keep that from happening ? I tried to ajust the height to 100% but that doesn’t work.

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Title and fonts’ is closed to new replies.