🧮Border Radius
Digital Nomad supports customizing Border Radius of buttons and tags.
The theme provides two CSS variables that allow you to customize the border-radius of various elements:
--border-radius-buttons- this variable adjusts theborder-radiusfor buttons.--border-radius-tags- this variable adjusts theborder-radiusfor tags.--border-radius-inputs- this variable adjusts theborder-radiusfor inputs.--border-radius-images- this variable adjusts theborder-radiusfor images.--border-radius-blocks- this variable adjusts theborder-radiusfor various elements on the website, including sidebar widgets, post's content blocks, etc.
To customize:
Access the Settings > Code Injection from the admin menu.
Click Open
In the provided space, specify the desired border-radius using the appropriate CSS variable. For example:
<style> :root { --border-radius-buttons: 3px; --border-radius-tags: 3px; --border-radius-inputs: 3px; --border-radius-images: 6px; --border-radius-blocks: 6px; } </style>

Click Save
Last updated