Add a random quote block to the sidebar

Add a random quote block to the sidebar 1.0

No permission to download
That should be fine.
Tried with this
Code:
  .bq {
    font-family: 'Shadows Into Light Two', cursive;
    font-size: 180%;
    margin-right: 15px;
}
@font-face {
    font-family: 'Shadows Into Light Two', cursive;
    src: url('http://fonts.googleapis.com/css?family=Shadows+Into+Light+Two');
}
but it doesn't show the correct font unfortunately...
 
Gotcha. This one
Code:
<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light+Two' rel='stylesheet' type='text/css'>
has to be put in the PAGE_CONTAINER and you can remove this
Code:
@font-face {
    font-family: 'Shadows Into Light Two', cursive;
    src: url('http://fonts.googleapis.com/css?family=Shadows+Into+Light+Two');
}
 
Top Bottom