how to change font and colour of site title
-
in twenty ten theme, how can i change font and colour of site title? can i use a font imported from a font website?
The blog I need help with is: (visible only to logged in users)
-
Hello @upupalady,
You can use this CSS snippet to change the color of the title on your website:
#site-title a { color: #ff0000; }The #ff0000 is a HEX color code (red in this example. You can change it to the code you want. You can get a new HEX color code here: http://htmlcolorcodes.com/
-
Hi @upupalady, for the title size, add the following and adjust the size as desired. 40px is what it is originally.
.wf-active #site-title { font-size: 48px; } -
Hi upupalady
.wf-active #site-title a { font-size: 90px; /*** Adjust size by changing color ***/ color: #C33416; /*** Adjust color by entering your desired html color code***/ }If you wish to find your desired color code, try sites like HTML color codes.
http://htmlcolorcodes.com/Chris
- The topic ‘how to change font and colour of site title’ is closed to new replies.