Change font size and background color

Hi,

id like to change the font size of LOGIN and APPLY FOR ACCESS to 12PX Bold

and also add a background color #FFD700

My site is https://luxurymrkt.com/products/alexander-mcqueen-army-green-nylon-graffiti-skull-shoulder-bag-666120

Hi @Luxurymrkt ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

.notAuthorizedBox a {
    font-size: 12px !important;
}

.notAuthorizedBox {
    background-color: #FFD700 !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like