• Resolved fallon.graham

    (@fallongraham)


    Would someone be able to help me correct an few errors with my pre-footer widget area on my site http://www.northlovessouth.com

    When I add content to pre-footer areas 1, 2, and 3 the alignment gets completely off.
    The white background in that area does not expand to the same width as the rest of the page. The text does expand to the correct width. The white area also breaks from the footer of the site.

    Thank you so much for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you’re not using a Child Theme, and if the theme doesn’t have a section for CSS modifications then do the following:

    1. Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
    2. use its “CSS Code” section of the dashboard to hold your CSS modifications:
    3. (put this code in)

      #prefooter-inner > div:last-child {
          width: auto;
      }
      
      #prefooter {
          background: white;
      }
      
      #prefooter .widget {
          margin: 0;
      }
    4. Save

    Alternatively use your Child Theme style.css file to hold your CSS modifications

    Thread Starter fallon.graham

    (@fallongraham)

    Thank you so much Andrew. It did the trick. I appreciate your time.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Alignment and page break in footer area’ is closed to new replies.