Paradigm - User Documentation
High Five ✋ Themes
  • 👋Introduction
  • 🆕Changelog
  • 🏁GETTING STARTED
    • 🔽Uploading a Theme
  • 📜MAIN TEMPLATE
    • 📰Post Template
    • 📄Page Template
    • 📑Categories (Tags) Template
    • 👨‍🎨Authors Template
    • ♾️Archive (All posts) Template
  • ⚙️CUSTOM SETTING
    • ™️Logos
    • 🔤Typography (Fonts)
    • 🧭Header Type
    • 🎨Background Color
    • 🧮Border Radius
    • 📢Subscribe CTA Text and Subtext
    • 🏠Homepage Layout
    • 🖌️Additional Colors
  • 🤝MEMBERSHIP
    • 🎬Setting Up
    • ⬇️Sign In Page
    • 🆙Sign Up Page
    • 🔀Subscribe Page
    • 👤Account Page
    • 💸Membership Page
  • 🛠️OTHER SETTINGS
    • ⏬Submenus
    • 📸Add Your Instagram Link (Icon)
    • 💬Comments
  • ☑️TERMS & CONDITIONS
    • 🔁Refund Policy
Powered by GitBook
On this page
  1. CUSTOM SETTING

Border Radius

PreviousBackground ColorNextSubscribe CTA Text and Subtext

Last updated 11 months ago

Paradigm 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-buttons - this variable adjusts the border-radius for buttons.

  2. --border-radius-images - this variable adjusts the border-radius for images.

  3. --border-radius-blocks - this variable adjusts the border-radius for various elements on the website, tier's card, post content block, etc.

  4. --border-radius-inputs - this variable adjusts the border-radius for inputs.

  5. --border-radius-tag-icons - this variable adjusts the border-radius for post tag icon ( ).

  6. --border-radius-submenus - this variable adjusts the border-radius for submenu in header.

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-blocks: 4px;
            --border-radius-images: 4px;
            --border-radius-buttons: 4px;
            --border-radius-tag-icons: 4px;
            --border-radius-inputs: 4px;
            --border-radius-submenus: 4px;
        }
    </style>
  4. Click Save

⚙️
🧮