• Hallo,
    I have this problem whit a footer space:
    The footer don’t equally divides by the amount of widgets added.
    But create one more space, empty.

    When I insert a new widget, it create a new empty space more, so the last space remains empty.

    For example, i want insert 2 widget, with space 50%(widget1) – 50% (widget2)
    but it make: 33% (widget1) – 33% (widget2) – 33% (empty)

    I’m using ALBAR version 10.1.0
    In the free version this problem did not happen.
    Now in the purchased version I have this problem

    Please help me soon!

    Thaks
    Sara

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey there Sara,

    Hope you’re well today!

    Not sure if this is the best solution but can surely be used as a temporary fix. You can do this with some custom CSS, add the following code in Appearance >> ALBAR Settings >> Styling Settings >> Custom CSS:

    .footer-widgets .widget {
    width: 50% !important;
    }

    Normally I wouldn’t suggest the use of the !important declaration. However, it can sometimes be a necessary evil when over-writing existing styles. You can find more info about important declaration here:

    https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity#The_!important_exception

    Hope this helps ??

    Cheers,
    Bojan

    Thread Starter sara.bertoldi

    (@sarabertoldi)

    Hello Bojan, thanky for you help, but I still have not completely solved..

    I did what you said. It works, but the result is not very nice.

    The footer is now split 50% 50% but left margin is short, and the right margin is larger. I think the reason is that the widgets are left aligned.

    The best solution would be to run the footer as it worked in the free version.
    Why the premium does not work? What could be the problem?

    Thanks Sara

    Hey there Sara,

    Could you please post a link to your site so I can take a look and try to correct it? Make sure that the code is added so I can see that in action.

    I don’t represent theme authors and I can’t really go that in depth with the differences between free and paid version since I don’t have paid one, I’m just trying to help here ??

    Cheers,
    Bojan

    Thread Starter sara.bertoldi

    (@sarabertoldi)

    Hallo Bojan,
    thank you again for your help ??

    the link is: https://www.rovergamma.it

    waiting for your replay
    thank you!

    Hey there Sara,

    The footer widgets are divided equally as you can see on this screenshot https://screencast.com/t/NlZl4pOry. The text widget content is just shorter, if you want you could center the content by replacing that code with this one:

    .footer-widgets .widget {
    width: 50% !important;
    text-align: center;
    }

    Maybe that will give a better look. Hope this helps ??

    Have a great weekend ??

    Cheers,
    Bojan

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