1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

CSS how do I change this text?

Discussion in 'Web Development' started by dapidmini, Dec 26, 2010.

  1. dapidmini

    dapidmini New Member

    how do I change this text's font?

    Hi, there's a text in my template which font I can't change. I've tried changing the tag that covers it with <h1> but the text won't get bigger, it just deletes the padding. I've also changed the css for h3 in the style.css but nothing changes.. the text is "Learn About Our Organic Vegetables" in the bottom right corner of this template:
     

    Attached Files:

  2. fryzas

    fryzas New Member

    It works okay for me, if I add this:

    Code:
    font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif
    in this place in style.css:

    Code:
    h3{
    color:#6b4916;
    font-size:28px;
    font-style:italic;
    padding:10px;
    }
    so it looks like this:


    Code:
    h3{
    color:#6b4916;
    font-size:28px;
    font-style:italic;
    padding:10px;
    font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif
    }
    It changes the font alright. Tried few different fonts, and font size, etc..
    Hope this helps! ;-)
     
  3. jd132

    jd132 VIP Member

    in ur style.css the font is defined in body tag

    so in order to change font u need to define in h3 as well let's say..

    hope it works ;)