dahlsdata-tahira
dahlsdata-tahira

Reputation: 359

Border is cutting off

As you can see on the screenshot below, in my sidebar the right border of "KULTUR" is cutting off. Its always at the last element of the row.

enter image description here

I have tried to change margins and paddings but it's not working unfortunately.

Here is the URL to my website: http://holmsbuopplevelser.dahlsdata-test.com

It's in the right sidebar if you scroll down a bit.

Thanks in advance!

Upvotes: 3

Views: 247

Answers (3)

Mohammad.Gh
Mohammad.Gh

Reputation: 395

I had checked your code and it is the only way you can manage tags with dynamic width and fix it! find class ".widget_categories li" in your css and change display from "inline" to "inline-block".

.widget_categories li{
      display: inline-block;
}

Upvotes: 1

Jishnu V S
Jishnu V S

Reputation: 8407

some of your li and buttons have this problem , add display:block to the buttons , and add display:inline-block to li , this will fix your issue, i checked your site

span.vc_gitem-post-category-name {
   display:block;
}

.widget_categories li{
   display: inline-block; 
}

Upvotes: 0

Taniya
Taniya

Reputation: 550

Try this:

.widget_categories li{
   display: inline-block; //rather display:inline
}

Upvotes: 4

Related Questions