• Resolved columbo

    (@columbo)


    hi, i was wondering if anyone can help me with these three things

    1. how do i change the text style so that the header and titles are not all upper-cased?
    2. how do i change the font style to something more ordinary, like roman times?
    3. how do i change the text colour from grey to black?

    here’s my site
    http://www.losebuttfat.org/

    i was also going to copy the css onto the pastbin but it seems to be down at the moment.

Viewing 2 replies - 1 through 2 (of 2 total)
  • 1. text style:
    in style.css delete the line with ‘text-transform:uppercase;’

    h1, h2, h3, h4, h5, h6 {
    	font-family: 'Trebuchet MS', 'Lucida Grande', Arial, Sans-Serif;
    	font-weight: bold;
    	text-transform:uppercase;
    	text-align:left;
    }

    2. font style:
    go through your style.css and look for lines with ‘font-family’ and change them accordingly. (http://www.w3schools.com/CSS/pr_font_font-family.asp)

    3. text color:
    in style.css change #555 (dark grey) to #000 (black) here:

    body {
    	font-size: 62.5%; /* Resets 1em to 10px */
    	font-family: 'Lucida Grande', Sans-Serif;
    	color:#555;
    	}

    btw: your css is openly accessible when you post a link.

    Thread Starter columbo

    (@columbo)

    oh, of course – ‘page source’.

    thanks alchymyth. will make the changes as soon as i get home.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Font Style’ is closed to new replies.