• Resolved megleg

    (@megleg)


    Hey all.
    Im trying to up the font size on the sidebar thru css. It appears something like so:
    <h8>Friends</h8>

      <?php get_links(-1, ‘

    • ‘, ‘
    • ‘, ‘ – ‘); ?>

    I want to change the size of the word ‘Friends’
    I’ve looked for answer in some of the past forum topics, but it seems every one is still unresolved. These forums have helped me so much in the past, so anymore you have to give is Great!
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Len

    (@lenk)

    You can control EVERY aspect of your document with CSS – your style sheet. Using your example, you have chosen the <h8> tag for that particular heading. If you look in your document you will see it is located in <div id="l_sidebar">. So, we go into your style sheet to see if <h8> is already defined … if not, you could add this,

    #l_sidebar h8 {
                   font-size:12px;
                   }

    You can do this for EVERY element. You can give a totally different look to <h8> tags in the sidebar and <h8> tags in the content area for example. You are limited only by your imagination.

    whistler2020

    (@whistler2020)

    You probably need to look at your css file and find you h8 you are looking for.

    It should be in the sidebar section and look something like #menu ul li

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘change font size on side bar’ is closed to new replies.