Paragraph - User Documentation
DemosSupport
  • 👋Introduction
  • 🆕Changelog
  • 🏁Getting Started
    • 🔽Uploading a Theme
  • 📜Main Templates
    • 📰Post Page
    • 🔍Post with Lightbox
    • 📑Categories (Tags) Page
    • 🧑‍🎨Authors Page
    • ♾️Archive (All Posts) Page
  • ⚙️Custom Settings
    • ™️Logos
    • 🔤Typography
    • 🧭Header Type
    • 🎨Background Colors
    • 🧮Border Radius
    • 🦸Hero Section
    • 🏠Homepage Layout
    • 📢Subscribe CTA Banner
  • 🤝Membership
    • 🎬Setting Up
    • ⬇️Sign In Page
    • 🆙Sign Up Page
    • 🔀Subscribe Page
    • 👤Account Page
    • 💸Membership Page
  • 🛠️Other Settings
    • 💬Comments
    • 📸Add Your Instagram Link (Icon)
  • ☑️Terms & Conditions
    • 🔁Refund Policy
Powered by GitBook
On this page
  1. Custom Settings

Border Radius

PreviousBackground ColorsNextHero Section

Last updated 1 year ago

Paragraph supports customizing Border Radius of buttons, inputs and page elements (images, post blocks).

The theme provides two CSS variables that allow you to customize the border-radius of various elements:

  1. --border-radius-btns-inputs: This variable controls the border-radius for buttons and input fields.

  2. --border-radius-img-and-containers: This variable affects the border-radius for images and other container elements such as post blocks.

To customize:

  1. Access the Settings > Code Injection from the admin menu.

  2. Click Open

  3. In the provided space, specify the desired border-radius using the appropriate CSS variable. For example:

    <style>
        :root {
            --border-radius-btns-inputs: 3px;
            --border-radius-img-and-containers: 3px;
        }
    </style>

  4. Click Save

⚙️
🧮