Hi!
I tried to remove the wrapper on my blogposts that indicated “return to blog”.
What I did:
I accessed my theme.css file.
I changed the code from this:
/*================ Return to collection/blog links ================*/
.return-link-wrapper {
margin-top: 82.5px;
margin-bottom: 0; }
@media only screen and (max-width: 749px) {
.return-link-wrapper {
margin-top: 55px; } }
.full-width-link {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 2; }
To this:
/*================ Return to collection/blog links ================*/
.return-link-wrapper {display: none;
margin-top: 82.5px;
margin-bottom: 0; }
@media only screen and (max-width: 749px) {
.return-link-wrapper {display: none;
margin-top: 55px; } }
.full-width-link {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 2; }
But it doesn’t seem to want to work.
Can someone please assist me?
Website link: https://idelettdelabat.com/blogs/news/still-life
Password: whihig
Theme: craft
Thank you!