Footer - can we use % for widgets?

Hi, 

I have 5 widgets at the moment and since they have different width I'd like to use custom alignment - for example 15% 25% 25% 20% 15%.

Would this be possible with some CSS? Can you help me with the code?

Thanks a lot!

Comments

  • Hey,
    sorry but you can only have layouts selected from theme options>footer.
    There are no other settings than those in the options.
    thanks
  • Something like this couldn't be used? This is a code snippet I found somewhere else.

    I noticed the widget are wrapped in .widgets_wrapper using one-fifth.column class. This cannot be altered in a similar way?


    /*Change width of the footer widgets*/
    @media (min-width: 768px) {
      .fl-page-footer-widgets .col-sm-3:first-child {
        width: 40%;
      }
      .fl-page-footer-widgets .col-sm-3:nth-child(2) {
        width: 20%;
      }
      .fl-page-footer-widgets .col-sm-3:nth-child(3) {
        width: 20%;
      }
      .fl-page-footer-widgets .col-sm-3:nth-child(4) {
        width: 20%;
      }
    }
  • Yes it can. Everything in the theme can be changed if you know how to code it.
    We do not help with such large modifications - we just help with simple css for changing color or padding etc.
    thanks
  • OK, thank you.

    I tried to modify the above code but it did not work. I'll try to figure it out.
Sign In or Register to comment.