An odd line break has appeared…

Home Forums Calendar Products Events Calendar PRO An odd line break has appeared…

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1026756
    [email protected]
    Participant

    Hi

    A strange line break has started appearing in my events, before the price information (e.g. | £10). See below:

    https://cldup.com/-QMw14clOu.png

    Any help welcome!

    #1026761
    George
    Participant

    Hey @Stevenradams,

    Just to be 100% clear, you mean the vertical bar character right? So that, essentially, instead of “| Free” you just want “Free”?

    If so, try adding the following bit of CSS to the very bottom of your theme’s style.css file:


    .tribe-events-divider {
    display: none !important;
    }

    Cheers!
    George

    #1026979
    [email protected]
    Participant

    Thanks so much for your help Cliff. Sorry — my post wasn’t that helpful!

    I like the vertical bar and am not trying to remove it…the query is that the ‘| £x’ bit used to appear on the same line as the event’s date and time (which is why the vertical bar is used, I expect). But, suddenly, it has started appearing on the next line even when there is plenty of room left in the column for it to be accommodated on the same line. The link in my post above shows a screenshot of the prob.

    V odd…

    Thanks in advance!

    #1027088
    George
    Participant

    Thanks for clarifying! Ignore my original CSS 🙂

    Try this instead:


    .tribe-events-schedule h2 {
    clear: none;
    display: inline-block;
    font-style: normal;
    font-weight: 700;
    }

    Here’s how that makes things look for me:

    I hope that helps!
    George

    #1027105
    [email protected]
    Participant

    Thanks for your help George (and sorry for calling you Cliff!!).

    The css didn’t change the behaviour, though interesting that you see the event info correctly … I’m using Mac Safari 9.0.1 so will now go and do some browser testing…

    Thanks George.

    #1027625
    George
    Participant

    Hm, that’s odd if it doesn’t apply for you – have you found anything out by your browser testing?

    Adding float:left; may make a difference in Safari, like this:


    .tribe-events-schedule h2 {
    clear: none;
    display: inline-block;
    float: left;
    font-style: normal;
    font-weight: 700;
    }

    #1027858
    [email protected]
    Participant

    George, you’re a hero. Thanks so much for taking the time to help me. Fixed!

    SA

    #1028334
    George
    Participant

    Woot! 😀 Best of luck with your project.

    — George

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘An odd line break has appeared…’ is closed to new replies.