• Resolved wurstfinger

    (@wurstfinger)


    Hi and sorry to bother you again.
    I just can’t see any mobile menu on my phone at all. Is there an option to activate it, or am I just doing something wrong?
    Thanks!

    Also: On mobile devices the title of reviews gets hyphenated (right word?) just in the middle of words, wherever space is not enough. Is there any solution?

    I’ll leave a good review..

    https://www.jakob-gruppe.de

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter wurstfinger

    (@wurstfinger)

    ?? I discovered the menu icon for mobile just seems to be white – not perfect on white background.. How could I change that by css?

    Theme Author Ben Sibley

    (@bensibley)

    Sure, the following CSS will make the button black, so it is easy to see on a white background:

    .toggle-navigation {
      color: black;
    }
    Thread Starter wurstfinger

    (@wurstfinger)

    perfect, thanks.
    and any solution or idea about the seond problem? sorry, i wrote “title of reviews” but i meant title of articles. The words get divided just anywhere..

    Theme Author Ben Sibley

    (@bensibley)

    Woops sorry, I missed that one.

    This should turn off the hyphenation:

    body {
      -webkit-hyphens: none;
      -moz-hyphens: none;
      hyphens: none;
    }

    I’m going to turn off the hyphenation by default in the next update for Tracks as well.

    Thread Starter wurstfinger

    (@wurstfinger)

    Ah thanks.
    Unfortunately didn’t solve the problem. Guess it’s not a real hyphenation, there’s no divider (-). I made a screenshot:

    https://www.mypantai.de/spacemonkeys/screen.jpg

    Long word and big font size, I know..
    Actually, REAL hyphenation would be better than how it looks now.
    Is the only way to smaller the font size?

    Theme Author Ben Sibley

    (@bensibley)

    Okay I see what you mean. The hyphenation only effects some browsers, and I assumed it needed to be turned off. That said, it won’t have an effect on your mobile device either way.

    This CSS is going to prevent the words in the titles from wrapping:

    .excerpt-title,
    .entry-title {
      word-wrap: normal;
      -ms-word-wrap: normal;
    }

    It might look kind of weird, but I’ll let you see what you think. If you want to decrease the font size instead, try this:

    .excerpt-title,
    .entry-title {
      font-size: 21px;
    }
    Thread Starter wurstfinger

    (@wurstfinger)

    Nice, thanks a lot! I decreased the font size.
    The css for wrapping worked great, only one very long word was missing the last three letters..

    Theme Author Ben Sibley

    (@bensibley)

    Got it, glad the font size is working well ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘mobile menu?’ is closed to new replies.