• Resolved KimMcDougalcrafter

    (@ormgrecipes)


    How can I add a thin gray border around all my items? I think it would make my page look better. I’m using the responsive theme.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Joe

    (@morehawes)

    Hi @ormgrecipes,

    The content added by Auction Nudge can be styled using CSS, for example:

    div#auction-nudge-items div.an-item {
      margin: 5px;
      border: 1px solid grey;
    }

    You can find more details about this here.

    I hope this helps.

    Joe

    Thread Starter KimMcDougalcrafter

    (@ormgrecipes)

    Bingo! That worked perfectly, thank you! One last question…how can I get my titles to be centered? I’ve tried this code, but it didn’t work.

    #auction-nudge-items .an-item .an-title a {
    white-space: normal;
    font-color: #a7cab2;
    font-size: 24px;
    text-align: center;
    }

    Plugin Author Joe

    (@morehawes)

    You’re welcome. This works for me:

    div#auction-nudge-items div.an-item div.an-title {
      text-align: center;
    }

    Cheers,

    Joe

    Thread Starter KimMcDougalcrafter

    (@ormgrecipes)

    Thank you so much, that worked! Marking as resolved ??

    Plugin Author Joe

    (@morehawes)

    Happy to help and thanks for the review!

    Joe

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to Add a Border around my Items?’ is closed to new replies.