Hi, does anyone know how to change the length of the underline under a text? Right now it is the same length as the column. I want it to be the same length as the text.
This is because you have the link ‘All Links’ element set to ‘display: block’ which causes the link to span the full width of the parent.
Set the display type to be ‘inline-block’ on that element and the box will shrink to fit the content rather than fit the parent. After you do that, you may want to apply ‘text-align: center’ to the parent element (column) to re-center the text.