is it possible to do this? (see image below)
so i can make my homepage more cute~! ![]()
thank you
Thereβs no need to add an image. This can be done through CSS.
Paste below CSS in base.css file
.collection-list-title, .multicolumn .title {
line-height: 50px;
margin: 20px auto;
z-index: auto;
cursor: default;
background-color: #eb7d99;
position: relative;
padding: 0 30px;
color: white;
width: auto !important;
}
.multicolumn .title {
margin: 18px auto;
}
.collection-list-title::after, .collection-list-title::before,
.multicolumn .title::after, .multicolumn .title::before {
border-width: 25px 0 25px 25px;
content: '';
position: absolute;
height: 0;
width: 0;
border-style: solid;
}
.collection-list-title::before, .multicolumn .title::before {
border-width: 25px;
border-color: #eb7d99 transparent;
left: -25px;
}
.collection-list-title::after, .multicolumn .title::after {
border-width: 25px;
border-color: #eb7d99 transparent;
right: -25px;
}
.title-wrapper-with-link a {
width: 100%;
text-align: center;
}
@media (max-width: 767px) {
.collection-list-title, .multicolumn .title {
padding: 0 10px;
margin: 17px auto;
}
.multicolumn .title {
margin: 15px auto;
}
}
Hope it helps you. Please mark the solution as accepted. For any further queries you can contact me in future.
Thanks
OMG Thank you sooo sooo much for helping!
it all worked~!