'Avada Tabs styling

I have some Wordpress Avada Tabs here: https://www.judoclubsihltal.ch/turnieranmeldungen/

Unfortunately they all have a different heigth: https://www.screencast.com/t/cwQ65Y9g

So i would like to have the <a> part the same heigth as the <li>. I already tried with display: block, but unfortunately i did not succeed.

#post-6702 .nav .nav-tabs li a{
    display: block;
}

Best Regards

Florin



Solution 1:[1]

simply give them a fixed height.

.tab-link {
    height: 50px;
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Daniel Wom