I managed to add it to my website by installing the following code into my base.css at the bottom now the issue is that this is being rendered on the PC but when I try to view it on my phone the text in the footer disappears
Here is the website: https://d5e373-08.myshopify.com/
ul.footer__list-social.list-unstyled.list-social:before {
content: "@jthooruae";
position: left;
height: auto;
padding-top:6px;
padding-left:10px;
display: block;
}
ul.footer__list-social.list-unstyled.list-social {
position: relative;
}
And here is how the footer looks, try entering the site with your mobile and you will see the @jthoor is gone for whatever reason
Thank you all for your support and let me know if you need any more info from me
1 Like
That’s because the style code you added is located incorrectly.
You can follow the steps below to make modifications:
-
Remove the second line of code
-
Place the CSS code you added at the outermost part of the base.css file. Do not place it in parentheses at the end of the file.
After modification, it can be displayed normally.
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
2 Likes
This is Noah from PageFly - Shopify Page Builder App
I have check and see if change screen mobile it will hidden code :before, You can add this code to base.css:
@media only screen and (max-width: 767px) {
ul.footer__list-social.list-unstyled.list-social:before {
content: "@jthooruae" !important;
position: left !important;;
height: auto !important;;
padding-top:6px !important;;
padding-left:10px !important;;
display: block !important;
}
ul.footer__list-social.list-unstyled.list-social {
position: relative !important;;
}
}
Hope my solution will help you resolve the issue.
Best regards,
Noah | PageFly
1 Like
Amazing thank you so much , you are the best
Hey sorry quick question , do you know how to swap the positions of the text and the logo, so the logo is on the left and the text is on the right ?
Just change the “before” here to “after”
Hopefully it will help you.