• When I enter a line between code tags I get very very small letters. Where can I change the appearance of the code tags? I’m not very good with php, but I think it has to be in the wp-layout.css but where?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Nope <code> is just the way it is as far as I know. It just exists …..

    you could try defining it in the css, or define and use a different tag.

    You could open up wp-layout.css in a good text editor and search for ‘code’… if it’s not there do as Podz suggests and add

    code {font-size:1em}

    Add this to your wp-layout.css (you might want to search the css document to make sure the code property hasn’t already been called):

    code {

    font-size: 14px;

    }

    CSS is pretty self-explanatory. So if it’s too big/too small just change the font-size declaration. You can also type

    color: red;

    to change it red (I’m just using red as an example here) or whatever other color you want it to be.

    Hope this helps,

    a€??Andrew

    Thread Starter mcp

    (@mcp)

    It worked. Thank you very much for the help. ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change the look of “code” lines?’ is closed to new replies.