• Is there a way to display the text functions, color/font size/alignment etc., in the full screen view [may be called “kitchen sink”]?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The only way to do all this is by using css styles. Text can be anything from: Paragraph <p>..</p>, headings <h1> to <h6>. When you have created your text, you then need to use styles like this:

    p {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 20px;
    	color: lime;
    	text-align: right;
    }

    I think you should post a specific question to get a specific answer because CSS is a technique its own way to do many things.

    Goos luck.

    Thread Starter bjnosek

    (@bjnosek)

    What I’m actually looking for is to have the same text function tool bar in the full screen view as in the small window view – this was available in the earlier versions but went away in the update

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tool bar for text functions’ is closed to new replies.