Add text widget under existing footer widgets

  • Unknown's avatar

    I’m new to CSS customization, so please bear with me if this is a stupid question. My theme comes with four 1/4 footer widgets. I want to know if its possible to add text beneath these footer widgets. I’m imaging a couple of lines of small-ish text running right across the bottom of the page and above the copyright badge. Can it be done? Thanks.

    The blog I need help with is: (visible only to logged in users)

  • You could do something a little bit hacky with this:

    .copyright-wrap::before {
      content: "My new text";
      display: block;
      margin-left: 5px;
      color: #ffffff;
      font-size: 12px;
    }

    Let me know how it goes.

  • Unknown's avatar

    That works. Thanks! If I may follow-up – my plan is to use this piece of real estate to link to the personal pages of key “Friends of E2R”. So what would I need to include in the content section if I was to have a name that was linked and clicking the link would open a new page? Would it be something like this:

    Kathryn

    If this was a regular post page I would experiment, but since this is CSS-stuff I’m reluctant to do that.

  • Unknown's avatar

    Oh, that was meant to be some html code, not your name with a link. I hope you see what I was trying to do there.

  • It’s not possible to add links in the CSS code, I’m afraid. You would need to put text with links in a text widget itself.

  • Unknown's avatar
  • The topic ‘Add text widget under existing footer widgets’ is closed to new replies.