• Resolved papamoabeach

    (@papamoabeach)


    Would really appreciate some help with how I remove the gray band that is obscuring my chosen background image on my homepage?

    My site which I’m just developing (with a lot of frustration) is https://christaylor.nz

    Thanks

    Chris

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Hi Chris,

    Thanks so much for upgrading!

    Are you referring to the footer section (screenshot)? If so, you can remove it entirely with the following CSS:

    #site-footer {
      display: none;
    }
    Thread Starter papamoabeach

    (@papamoabeach)

    Thanks a lot Ben. That did the trick. I’m OK with the Tracks Theme text in footer. Just wanted to remove the solid dark grey band. If you give me another CSS that wll just insert the text ‘Tracks WordPress Theme By Complete Themes’ I will add it back.

    Cheers
    Chris

    Theme Author Ben Sibley

    (@bensibley)

    Okay cool, you can use the following CSS instead then:

    #site-footer h3,
    #site-footer .site-description,
    #site-footer .social-media-icons,
    #site-footer .sidebar-footer {
      display: none;
    }

    Hi I also tried this and all it did for me was hide my icons. Is there any way to change the blackish/grey color to transparent so it will take on whatever background I have put on since I’ve upgraded.

    Oh I figured it out ?? I tried with an opacity at 0 and couldn’t see anything. I settled for .5

    #site-footer {
    opacity: .5;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do I remove the solid grey band over my background image?’ is closed to new replies.