To increase the space between text and underline in Webflow, you can use CSS properties to customize the design.
To add space between text and underline, you can use the `text-decoration` property. By default, Webflow applies the `text-decoration: underline` property to the selected text element. To increase the space between the text and underline, you can add padding or margin properties to the text element.
For example, if you have a paragraph element with underlined text, you can add the following custom CSS in Webflow:
1. Select the paragraph element.
2. Go to the Styles tab in the right sidebar.
3. Click on the "+" button next to the element's class.
4. Add a new class or use an existing class.
5. In the Styles panel, click on the "Add styles" button.
6. In the Custom Code section, add the following CSS code:
```css
.text-element-class {
text-decoration: underline;
padding-bottom: 5px; /* Adjust this value to increase or decrease the space */
}
```
In the above example, the `text-element-class` should be replaced with the class name of your paragraph element. The `padding-bottom` property creates space between the text and underline by defining the distance (in pixels) between them. You can adjust the value as per your requirement.
Regarding adjusting the line thickness of the underline, by default, Webflow doesn't provide an option to adjust the line thickness directly. However, you can use custom code to override the default underline style and modify the line thickness.
Here's an example of how you can accomplish this:
```css
.text-element-class {
text-decoration: none;
border-bottom: 2px solid black; /* Adjust the thickness and color as needed */
}
```
In the above code, we remove the default underline style using `text-decoration: none`, and then create a new underline using the `border-bottom` property. By adjusting the `2px` value, you can control the thickness of the underline. Change the color to `black` or any other color value as desired.
Remember to change `.text-element-class` with the actual class name of your paragraph element.
By using these CSS techniques, you can increase the space between text and underline and adjust the line thickness in Webflow.