• Hey there, Sorry if this has already been answered somewhere else, but I am a novice WordPress’er and need some help asap! I can’t seem to get my Feature Icons to show up on my home page: https://www.outdoorlabfoundation.org instead the icons seem to be replaced with random numbers or letters. Also, the Facebook, Twitter and Youtube icons in the upper right are replaced with letters…any ideas on how to fix this? Many Thanks!

    -Brad

Viewing 1 replies (of 1 total)
  • Are you using a child theme? You should consider using one.
    If not,you can edit your theme’s style.css at line 1484 to fix the icons in the top right of your page.
    Now it looks like this:

    ul.social li {
    display: inline-block;
    }

    Change it to this:

    ul.social li {
    display: inline-block;
    float: left;
    padding-right: 5px;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘"Feature Icons" Not Showing Up On Home Page’ is closed to new replies.