Have your say in Community Polls: What was/is your greatest motivation to start your own business?

help me fix my code that appears on the top of my website.

help me fix my code that appears on the top of my website.

wisteriafalls
Tourist
10 0 4

Code is appearing on the top of my website. How do I remove this? Not only that, the Cart page is all out of wack with a blue button and one section highlighted with the color i want for the whole page (C9A0DC). blue button needs to be this color (BFFB7B). Thanks in advance. heres my website, www.wisteriafalls.shop 

Replies 4 (4)

Columbus_Themes
Shopify Partner
125 9 16

What theme you're using?

If you find my reply helpful, please hit Like and Mark as Solution.

Happy coding!
wisteriafalls
Tourist
10 0 4

Refresh!

Made4uo-Ribe
Shopify Partner
9037 2160 2664

Hi @wisteriafalls 

Check in the theme.liquid file if this code above in your store are there. If it is put some style tag. 

 

<style>
body {
        display: grid;
        grid-template-rows: auto auto 1fr auto;
        grid-template-columns: 100%;
        min-height: 100%;
        margin: 0;
        font-size: 1.5rem;
        letter-spacing: 0.06rem;
        line-height: calc(1 + 0.8 / var(--font-body-scale));
        font-family: var(--font-body-family);
        font-style: var(--font-body-style);
        font-weight: var(--font-body-weight);
      }

      @media screen and (min-width: 750px) {
        body {
          font-size: 1.6rem;
        }
      }
</style>

 

 

And about your cart button try this. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

a.button {
    background: #BFFB7B;
    color: black;
}

 

  • And Save. I change also the color of text is white before. 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
wisteriafalls
Tourist
10 0 4

The first part worked perfectly. the second part of the cart not so much. that solution isn't working. Anything else I can do to make the cart look clean? way too messy right now