hey,
on my mobile layout the name and the box around it seems very chunky.
is it possible to make the lines of the box a little bit thinner, and the letters a little bit smaller?
NOTE: only for mobile
url: sixdreamz.com
password: sdc2003
hey,
on my mobile layout the name and the box around it seems very chunky.
is it possible to make the lines of the box a little bit thinner, and the letters a little bit smaller?
NOTE: only for mobile
url: sixdreamz.com
password: sdc2003
Hi @sixdreamz ,
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hello @sixdreamz
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
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello @sixdreamz
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the end of the file and save.
h5, .h5 {
font-size: 10px !important;
}
.card__information {
border: solid 1px black !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello There,
@media screen and (max-width: 750px) {
.card__information h3 {
font-size: 12px;
}
.card__information {
border: solid 1px black !important;
}
}