Uuuh, so I've been having trouble with using the class selectors since there's always a line break before and after the actual selected words.
FOR
INSTANCE. If you go to 'known' you'll see 'PHAIOS' and a linebreak before the actual description when actually in the text there is none. If anybody could help me solve this so that they'll appear side-by-side?
That's because you denoted it
<p>
, which defines a paragraph. Instead of<p>
try using<span>
which is an inline element.Ah! Thank you!
Thank you, Tuo and Kohva!