Background Image

  • This topic has 5 replies, 2 voices, and was last updated 8 years ago by Wes.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #17626
    Marquise
    Customer

      I’m trying to get that dark tint on my image that is on the demo image. Is that something I can do within wordpress or is that something I have to do to the photo?

      #17627
      Wes
      Moderator

        That’s something I did with the image itself in Photoshop. However, I can give you a small piece of code that would automatically do this for you with CSS. Do you have a link to your site? If you do I can tell you where to add this line of code – background: rgba(0, 0, 0, 0.4); and it will add the tint over your image.

        You’ll be able to adjust how dark/light it is once we get it on there.

        Just let me know if you have a link so we can get it taken care of.

        #17628
        Marquise
        Customer

          my website is http://www.marquisejennings.com

          Is that all you need?

          #17629
          Wes
          Moderator

            Yep, if you add that code around line 1482 in your style.css file it will instantly add the tint for your image –

            .front-page-1 .image-section {
            	background: rgba(0, 0, 0, 0.5);
            }

            If you don’t know how to locate the line number in your Style.css file to edit your css, then you can add that code to your Genesis Theme Settings page at the bottom inside the “Header Scripts” box –

            <style type="text/css">
            	.front-page-1 .image-section {
            		background: rgba(0, 0, 0, 0.5);
            	}
            </style>

            Let me know if you need help adding this code in.

            #17630
            Marquise
            Customer

              Wow, thanks a lot! That was easier than I thought it would be lol

              #17634
              Wes
              Moderator

                You’re Welcome!

              Viewing 6 posts - 1 through 6 (of 6 total)
              • The topic ‘Background Image’ is closed to new replies.