Change color of Front Page 4 Widget Area

Homepage Community Forums Aspire Theme Support Change color of Front Page 4 Widget Area

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #17680
    Mary
    Customer

      Hi,

      I can’t figure out how to change the background color for widget area #4 on the home page. On this dev site, it’s the Services section which is currently black.

      http://www.rees.maryiannotti.com/

      I tried using developer tools to get the selector but couldn’t find the right one.

      Thanks for your help!

      #17692
      Wes
      Moderator

        That widget area is setup just like the other widget areas that use Background Images. The black color you see is actually an image. There are multiple ways to remove it, but the fastest way is by adding some CSS to override it –

        .front-page-4 {
        	background-color: #fff;
        	background-image: none !important;
        }

        You can change the color to whatever you want, I just added #fff (white) as an example.

        If you don’t want the image to show up in the background at all, then you would need to go into your theme files and remove them from the customize.php and output.php file. That involves editing the PHP code…..but if you would rather just use CSS to prevent it from showing, then that would be much easier.

        #17698
        Mary
        Customer

          I didn’t know it was a background image, that’s what I was missing. Thanks Wess!

          #17699
          Wes
          Moderator

            You’re Welcome!

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘Change color of Front Page 4 Widget Area’ is closed to new replies.