Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to get rid of grey background on button

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #296370
    edgood
    Participant

    Hi all
    Wordpress is adding a p tag and ugly grey background to my red signup button at the beginning of this page: https://bit.ly/2llqmkP just after the h1 tag.
    How can i can get rid of it without removing the p tag?
    Thank you!

    #296386
    Paulie_D
    Member

    Well this is the rule

    .front-page-1 p {
        font-size: 22px;
        font-size: 2.2rem;
        color: #fff;
        line-height: 2;
        padding-top: 40px;
        background: rgba(100,100,100,.7);
    }
    

    I suggest you remove the background and/or make it more specific to target it only the paragraphs you want.

    #296412
    edgood
    Participant

    Thanks Paulie. I´ll get rid of the background in that class and then what would be a good solution, shall I add a span to the text? text

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.