How to change the font of the text?
|
|
Mugen_Boy | Date: Monday, 08.08.2011, 17:20 | Message # 1 |
Group: Verified
Posts: 51
Awards: 0
Status: Offline
| I want to change that text font, how should I?Added (08.08.2011, 17:20) --------------------------------------------- Help please?
|
|
| |
admin | Date: Tuesday, 09.08.2011, 11:55 | Message # 2 |
Group: Verified
Posts: 187
Awards: 8
Status: Offline
| Why not suit a standard font?
|
|
| |
Mugen_Boy | Date: Wednesday, 10.08.2011, 16:00 | Message # 3 |
Group: Verified
Posts: 51
Awards: 0
Status: Offline
| No i just wanted to know where to change it cuz the CSS code of this template is completely different from the codes of the themes provided by ucoz
|
|
| |
admin | Date: Thursday, 11.08.2011, 11:24 | Message # 4 |
Group: Verified
Posts: 187
Awards: 8
Status: Offline
| Find lines 36 and 38 in your css
Code .blogname h1 a:link, .blogname h1 a:visited { color: #FFFFFF; margin: 0 0 0 0; } and
Code .blogname h2 { color: #BFB3A7; font-size: 16px; font-weight: normal; margin: 0; text-shadow: 1px 1px 0 #172527; }
Change the value COLOR on any other! Examples of color codes
|
|
| |
Mugen_Boy | Date: Friday, 12.08.2011, 15:40 | Message # 5 |
Group: Verified
Posts: 51
Awards: 0
Status: Offline
| hmm how do I change the font of the text and not only the color?
|
|
| |
admin | Date: Friday, 12.08.2011, 15:44 | Message # 6 |
Group: Verified
Posts: 187
Awards: 8
Status: Offline
| Example: font-size:32px; //font size font-family: Tahoma,Century gothic,Arial,Tahoma,sans-serif; //font type
|
|
| |
Mugen_Boy | Date: Saturday, 13.08.2011, 13:27 | Message # 7 |
Group: Verified
Posts: 51
Awards: 0
Status: Offline
| Okay I'll try and give you feedback later Added (13.08.2011, 13:27) --------------------------------------------- I dont get it what should I change in these to change that font of the header? Code .blogname { width:400px;margin:15px 0 0 10px;height:70px; text-align:left;float:left;font-family: Georgia,Arial,Tahoma, Helvetica, sans-serif; }
|
|
| |
admin | Date: Saturday, 13.08.2011, 17:19 | Message # 8 |
Group: Verified
Posts: 187
Awards: 8
Status: Offline
| What font you want to use? There are several ways to connect non-standard fonts. Google Web Fonts
|
|
| |
Mugen_Boy | Date: Sunday, 14.08.2011, 10:30 | Message # 9 |
Group: Verified
Posts: 51
Awards: 0
Status: Offline
| okay lets say i wanna use Gloria Hallelujah how should I use it? where should i edit the css? because there are many fonts like Code font-family: Georgia,Arial,Tahoma, Helvetica, sans-serif In those which font name should I edit and write Gloria Hallelujah?
|
|
| |
admin | Date: Monday, 15.08.2011, 11:21 | Message # 10 |
Group: Verified
Posts: 187
Awards: 8
Status: Offline
| Add in the CSS line: Code @import url(http://fonts.googleapis.com/css?family=Gloria+Hallelujah); then specify the font where you want to see it. Example:
Code .blogname { width:400px;margin:15px 0 0 10px;height:70px; text-align:left;float:left;font-family: 'Gloria Hallelujah', cursive; } Done!
|
|
| |
Mugen_Boy | Date: Monday, 15.08.2011, 14:38 | Message # 11 |
Group: Verified
Posts: 51
Awards: 0
Status: Offline
| Quote (admin) @import url(http://fonts.googleapis.com/css?family=Gloria+Hallelujah); So if I want to change the font, then i need to replace that right?
Message edited by Mugen_Boy - Monday, 15.08.2011, 14:38 |
|
| |
admin | Date: Monday, 15.08.2011, 14:45 | Message # 12 |
Group: Verified
Posts: 187
Awards: 8
Status: Offline
| Mugen_Boy, Learn in detail Google Web Fonts, there are written.
|
|
| |
Mugen_Boy | Date: Monday, 15.08.2011, 14:47 | Message # 13 |
Group: Verified
Posts: 51
Awards: 0
Status: Offline
| But, what should I click in that site?? Im confused
|
|
| |
admin | Date: Monday, 15.08.2011, 14:50 | Message # 14 |
Group: Verified
Posts: 187
Awards: 8
Status: Offline
| Select a font, click Quick-use, and step by step instructions that are described
|
|
| |
Mugen_Boy | Date: Monday, 15.08.2011, 15:02 | Message # 15 |
Group: Verified
Posts: 51
Awards: 0
Status: Offline
| Ooh I understood thanks!!
|
|
| |