Krystian
Krystian

Reputation: 987

same width for divs/ boxes in Widget-Area of Wordpress

I just wondered if there is a way to get those boxes the same width? I tried min-width inline, but nothing happens.

This is the website: http://neuronade.com/kopie-sdfsdf-3/

enter image description here

Upvotes: 0

Views: 26

Answers (1)

UncaughtTypeError
UncaughtTypeError

Reputation: 8722

To achieve this you need to declare the following rules:

#mk-sidebar a.btn {
    display: block;
    box-sizing: border-box;
}

min-width applies to all elements but non-replaced inline elements, table rows, and row groups.

https://developer.mozilla.org/en-US/docs/Web/CSS/min-width

Upvotes: 1

Related Questions