😀 I discovered the menu icon for mobile just seems to be white – not perfect on white background.. How could I change that by css?
Sure, the following CSS will make the button black, so it is easy to see on a white background:
.toggle-navigation {
color: black;
}
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..
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.
Ah thanks.
Unfortunately didn’t solve the problem. Guess it’s not a real hyphenation, there’s no divider (-). I made a screenshot:
http://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?
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;
}
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..
Got it, glad the font size is working well 🙂