remove copyright footer

Hey, I’d like to remove the copyright footer text completely from my whole site as shown in the image below, I’m a beginner. Thank you.

dvaughn_0-1723408697909.png

1 Like

Hey @dvaughn

Your website is password protected, can you share your frontend password as well?

Best Regards,

Moeed

Hi @dvaughn

Would you mind to share your store URL and password? Thanks!

The url is

Hey, the store url is

Thanks! its password protected.

Yes, password is 123456

Hey, yes it’s

Hey @dvaughn

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Thanks for the info, check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.copyright small.copyright__content {
    display: none;
}

And Save.

Result:

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

Thank you very much this worked, I have another question, I would appreciate if you could tell me how i could change this contact page form color text to black.

Your store is password protected, I cant access to the password youve provide.

I’ve already solved this issue, thank you. I have another request I’d appreciate if you could help me on. I would like to put my product in the center of the screen for pc/laptop as it is already in the center for mobile. The first image on the left shown above is how it currently looks like and the second image on the right side shown above is how I want it to look like.

Yeah, I’ve already seen your other post that is why I am asking again the password.

Thanks, check this one.

Same Instruction.

.product-list {
    justify-content: center;
}

And save.

But it seems like you intended align on left. You add a commenct to avoid center alignment

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

1 Like

Do I put this on the very bottom of main.css?

This worked by me putting this in the very bottom of main.css, thank you very much well appreciated brother! Could you assist me on how to change this form color text from grey to black??

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

For this one. Same instruction.

.form-field input::placeholder, .form-field textarea::placeholder {
     color: rgba(0, 0, 0, 1);
}

And Save.

Result:

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