Adding image to footer

Support Area Forums Forward Adding image to footer

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question: http://ltlov.org
  • Author
    Posts
  • #34299
    Peter Zogas
    Participant

    Hi Bill,

    I’d like to add an image at the bottom of the home page (and maybe others) that would span the entire width of the page and scale for smaller windows. The properties would be like the slider object. I tried several ways to add an image to the footer area but the image was small and did not scale.

    The image widgets used in the Home area seam to be sized for a side bar. I’m wanting something that would span the entire width

    Thanks

    Pete

    #34301
    Bill Robbins
    Moderator

    Hi Pete,

    I suspect we can do that. Let’s approach it this way:

    1. Go to the Appearance section in your WordPress dashboard and click on Customize.
    2. Look down for the advanced section and click on it. Then choose Custom CSS.
    3. In the box there, add this:
      
      #footer-sidebar .widget {
      	float: none;
      	width: 100%;
      	margin-bottom: 0;
      	padding: 0;
      }
      
      #footer-sidebar img {
      	margin: 0;
      	width: 100%;
      	height: auto;
      }
      
    4. Save your changes.

    That should make the image in the footer widget span the width of the footer. Make sure the image there is large enough so that it doesn’t get grainy at larger screen sizes.

    Let me know if that doesn’t do the trick.

    Have a great week,
    Bill

    #34314
    Peter Zogas
    Participant

    Worked like a charm!

    #34315
    Bill Robbins
    Moderator

    Fantastic! Let me know if you need anything else ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Adding image to footer’ is closed to new replies.