• Resolved Listic

    (@listic)


    I have now successfully created a child theme, but can figure it out..!
    Here im trying to change the font size, but no luck.. The site title code that was in the “copy paste” code on wordpress.org works.. I really cant figure out why it dossent work.. Im totaly new to childe themes… it works if i change these values in twenty ten style.css itself.. I would be happy if someone could tell me what im doing wrong here?

    /*
    Theme Name: Twenty Ten Child
    Description: Child theme for the Twenty Ten theme
    Author: Mads
    Template: twentyten
    */

    @import url(“../twentyten/style.css”);

    #site-title a {
    color: #009900;

    }
    #content textarea {
    color: #333;
    font-size: 9px;
    line-height: 22px;
    }
    #content p {
    margin-bottom: 8px;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • Are you trying to change this:

    #content textarea {
    color: #333;
    font-size: 9px;
    line-height: 22px;
    }

    ???

    If so, that only controls a text area within a form. It won’t affect much else on your site. YOu would need to include the rest of that code from twentyten

    #content,
    #content input,
    #content textarea {
    	color: #333;
    	font-size: 9px;
    	line-height: 22px;
    }

    for it to target the rest of your site

    Thread Starter Listic

    (@listic)

    Thanks allot that worked… Thought I tried that already but must have done something wrong. Im onely used to changing css not riting it. Know Ill have to look into some basic stuff.

    I was just losing my temper not getting it right.

    Thanks mate

    Sure thing, glad to help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Childe theme what am i doing wrong?’ is closed to new replies.