• Ok, lets try this again! (I think the code was too long)

    I’d like to use Another WordPress Classifieds Plugin, but when I view an ad on my page, the item description box is white and the text within it is white too. Here is a link: https://prommafia.com/classifieds/?a=showad&id=3

    I’d like to either change the text to black or change the box color to black. I can’t find where to change the code. Can someone help?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter prommafia

    (@prommafia)

    Here is the code:

    [Moderated: Too much code. Please consider placing the code in a text file on your site with a link here -or- use a pastebin service such as https://wordpress.pastebin.com. Thanks!]

    If you want to change the background to black, try editing awpcpstyle.css in the wp-content/plugins/another-wordpress-classifieds-plugin/css/ folder and changing:

    #showad p {
    background:#F5F5F5;
    border:1px dotted #F9F9F9;
    margin-top:10px;
    padding:15px;
    }

    to

    #showad p {
    border:1px dotted #F9F9F9;
    margin-top:10px;
    padding:15px;
    }

    An alternative option that meant you could still upgrade the plugin, without over-riding your changes, might be to add:

    .entry #classiwrapper #showad p {background:#000;}

    to the bottom of style.css

    Thread Starter prommafia

    (@prommafia)

    Worked perfectly! I love you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change color of Classifieds Plugin’ is closed to new replies.