Website title

moconnor / 2013-03-24 10:52:36   

Can you have two different font sizes in the website title and how do you change spacing here? Also can you have a different font to the content?

arsondpi / 2013-03-24 11:39:30   

You just need to define two different css styles in your style.css file and then use them in the text area.
For example

  1. . fontstyle1 { font-size: 18px; }
  2.  .fontstyle2 { font-size: 10px; } 

And in your text area

  1.  <span style="fontstyle1"> big text here</span>
  2.  <span style="fontstyle2">smaller size  text here</span>

Otherise you can edit the h tags to work similarly...

moconnor / 2013-03-24 21:44:22   

Thanks Arsondpi, will try that.

This thread has been closed, thank you.