I am trying to migrate my customized debut theme shopify store to a new account and when I exported my theme from the old account and then reimported my theme into the new account I noticed that some things were not the same.
for this thread I am trying to figure out where I can find and remove a search link text that has appeared in the footer of all of my pages that I did not have in the original page, please see the images here to see the before and after.
it looks to be in the footer of the page but if you go to customize the theme i couldn’t find anywhere to remove it there.
I think i have to find where the code is an remove it but when i did edit code on the back end i couldn’t find the page that was creating it.
any help would be appreciated, thanks!
1 Like
Hello @Matt_Dubinsky
can you share store URL?
oh totally forgot to do that
the original store is here:
https://chelseasbeads.com/
the new store is here ( I haven’t changed the pointers yet as i want to get the site working properly before doing so):
https://6e3743.myshopify.com/
forgot to post the links to the site, here are the original and new site links
the original store is here:
https://chelseasbeads.com/
the new store is here ( I haven’t changed the pointers yet as i want to get the site working properly before doing so):
https://6e3743.myshopify.com/
Hi @Matt_Dubinsky
The new store is password protected. Would you mind to share the pw.?Thanks!
here is the password to access the new site:
12345
1 Like
forgot that the new site is still password protected, the password to view the new site is:
12345
Thanks for the info, check this one.
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:
@media only screen and (min-width: 750px){
.site-footer__linklist-item {
display: none !important;
}
}
.site-footer__linklist-item {
display: none !important;
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
thanks! that did remove the search text but one last thing
id like that email list subscribe to be either left aligned like it was in the original site, or actually maybe center aligned, id like to test both
can you tell me how to do that?
you can see on the original page the left alignment as a reference here:
https://chelseasbeads.com/
1 Like
getting close to the solution now!
Made4uo-Ribe helped me with code to remove the search text from the pages, but the join email list section is still right aligned on the page and now looks like this:
you can see this here: https://6e3743.myshopify.com/
use password: 12345 to view the page
I’d like it to be left aligned like it was on the original page here: https://chelseasbeads.com/
and looking like this:
Hello @Matt_Dubinsky
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
.site-footer .site-footer__social-icons{
margin-top: 101px;
}
.site-footer .site-footer__newsletter {
position: absolute;
right: 52%;
}
.site-footer .grid.grid--no-gutters {
position: relative;
}
Check this one.
Please, replace the first code I give. I have some mistakes I didnt hide the other wrapper. The code just repeat as you notice they are same.
@media only screen and (min-width: 750px){
.site-footer__linklist-item, ul.site-footer__linklist {
display: none !important;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
thank you for your help!
I hate to be a pain, but what would be the code to center align the email subscribe section, I was just thinking that might look nicer