• Hi Guys,

    HELPPPPPPPPPPPPPPPPPPPPPP

    Trying to merge the footer widgets that for some stupid reason they have split them into 4 into one.

    http://lewis-edwards.netdaddy.co.uk/

    Site still in dev and not live yet but wants it in the middle 🙁 how ive looked into the css and nothing jumping out.

    Tried putting the footer info into the customiser but that only goes to the left as well but cant even see that in the css.

    So either make one big footer widget or spread out the customiser txt to the middle.

    Cheers guys

    Simon

Viewing 5 replies - 1 through 5 (of 5 total)
  • If you just want 1 widget in the footer spread across the whole section, remove the text from the 2nd, 3rd and 4th widget, leave it in the first widget. Then use the following CSS to allow one widget to be full width.

    .footer-widgets .col-md-3:first-of-type {
      width: 100%;
    }

    All that is doing is picking up “footer widget area 1” basically and making that one area full width.

    Let me know if that works

    Thread Starter netdaddy

    (@netdaddy)

    Brilliant it works one more thing how can i get the txt in the footer aligned centre

    Where i used the code above, change it to this (adds in a line basically)

    .footer-widgets .col-md-3:first-of-type {
      text-align: center;
      width: 100%;
    }
    Thread Starter netdaddy

    (@netdaddy)

    oh i tried that before 2 secs let me try your code

    Thread Starter netdaddy

    (@netdaddy)

    what a bugger yours work 🙂 cheers mate hopefully that will keep him happy for a while

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Footer span’ is closed to new replies.