AI Max
  • AI Max - AI Games Shopify Theme
  • Getting Started
    • Theme Features
    • Support Policy
    • Shopify
  • How to install Theme
    • Download the Theme Package
    • Theme Files
    • Install Theme
  • Header
    • Announcement bar
    • Top bar
    • Header
    • Currency Selector
    • Language Selector
    • Menu & Mega Menu
  • Footer
    • Footer
    • GRDR Cookies
  • Pages
    • About Us
    • Contact
    • Faq
    • Wishlist
  • Theme Settings
    • Colors
    • Preloader
    • Typography
    • General Settings
    • Layout
    • Buttons
    • Inputs
    • Cards
    • Content Containers
    • Badges
    • Search Behaviour
    • Favicon
    • Social Media
    • Cart
    • Shipping Rates Calculator
  • Sections
    • Slideshow
    • Support Block
    • Featured Collection
    • Masonry banner
    • Specification Block
    • Brand Logo
    • Instagram Gallery
    • Team Section
    • Product Tab
    • Image Banner
    • Video
    • Testimonial
    • Newsletter
    • Collection List
  • Products
    • Products
    • Product Creation
    • Suggested Products
  • Blog
    • Blog Post
  • Apps
    • App Integration
  • Frequently Asked Questions
    • How to edit the product details in shopify
    • How to edit font in Shopify?
    • How to Edit Language Translation and Missing Translations
    • How to Create a Staff Access and Collaborator Access
    • How to Showcase Multiple Collections
    • How to create a blog post in Shopify
    • How to Create Breadcrumbs
    • How to Customize Your Featured Collection Section
    • How to Add Filters to Your Shopify Collection
    • How to add variants for products
    • How to add multiple currency in shopify 2.0
    • How to Customize Header and Section
    • How to add bundled products
Powered by GitBook
On this page
  • Border customization's
  • Box shadow customization's
  1. Theme Settings

Buttons

PreviousLayoutNextInputs

Last updated 4 months ago

Step 1 : From your Shopify admin, go to Online Store > Themes.

Step 2 : Find the theme that you want to Edit and Click Customize.

Step 3 : Click Theme Settings.

Step 4 : Theme Settings > Buttons

Border customization's

Border: In the Border section, you can select the desired color for the button border, and customize its thickness, opacity, and corner radius. In CSS, this is represented as: border: 1px solid [border-color];

Here, 1px defines the thickness, solid is the common border style, and [border-color] is the color you choose. You can also adjust the border's opacity and corner radius for further customization:

Opacity: This can be controlled using rgba() for the color value, where the a represents alpha (opacity).

Corner Radius: The border corners can be rounded using the border-radius property.

Eg: border: 2px solid rgba(255, 0, 0, 0.5); /* Red border with 50% opacity */ border-radius: 10px;

Shadow: In the Shadow section, you can adjust the Opacity, Horizontal offset, Vertical offset, and Blur of the button's shadow. These settings allow you to control how light or dark the shadow appears, as well as its position and softness.

This is used to set a box-shadow for the button in CSS. The syntax looks like this:

Eg: Box-shadow: [horizontal-offset] [vertical-offset] [blur-radius] [spread-radius] [color];

Box shadow customization's

Horizontal offset: Moves the shadow left or right.

Vertical offset: Moves the shadow up or down.

Blur radius: Determines how blurry the shadow is.

Spread radius: Controls the size of the shadow.

Color: Specifies the shadow color, where you can use rgba to adjust opacity.

Eg; box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);