• In my blog http://www.classontap.com I want to lower the “Share:” text that is in front of the Tweet and Facbook Like buttons. I want it to be flush with those two buttons. I was reading up on how to fix it and I saw that I must create a new CSS and then add it to my site. How do I upload the new CSS to the WordPress dashboard?

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • From your WordPress dashboard go to Appearance > Editor

    Make sure you are editing the file style.css – from the list of files on the right hand side of the page click the one that says ‘Stylesheet (style.css)’

    Then scroll down until you find this:

    #coreContent li {
    list-style: square;
    margin-left: 17px;
    }

    then add this line to it line-height: 30px;

    it should look like this when you are finished:

    #coreContent li {
    list-style: square;
    margin-left: 17px;
    line-height: 30px;
    }

    Then click the blue ‘Update File’ button beneath the edit window.

    Thread Starter BennyBenassi

    (@bennybenassi)

    Thank you for responding. Unfortunately that is not working. : ( Do you have any other suggestions?

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

The topic ‘Add a New CSS’ is closed to new replies.