Forums

Add a New CSS (3 posts)

  1. BennyBenassi
    Member
    Posted 5 months ago #

    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

  2. maikunari
    Member
    Posted 5 months ago #

    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.

  3. BennyBenassi
    Member
    Posted 5 months ago #

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

Reply

You must log in to post.

About this Topic