Hi,
I am trying to change the margins/padding on this section on my home page so that the heading is in a single line rather than two.
Would anyone be open to helping? Thanks in advance!
Hi,
I am trying to change the margins/padding on this section on my home page so that the heading is in a single line rather than two.
Would anyone be open to helping? Thanks in advance!
Hey there @atmos-art Try this code and let me know if it works for you
@media (min-width: 1024px) {
.site-header #AccessibleNav {
width: 90% !important;
}
}
Hi, I donât have a file called âtheme.scssâ. Is there another place that this code would potentially work?
Hi @atmos-art
let try to add this custom css code:
.rich-text.content-container .rich-text__blocks{
max-width: unset !important;
}
the result:
First â you should consider setting âHeading sizeâ setting of the section block to smaller value.
Then, add this to this âRich textâ sections âCustom CSSâ setting:
.rich-text__blocks {
max-width: none;
}
There is absolutely no need to edit theme code for this simple fix.
Please add this code to Custom CSS of that section.
@media (min-width: 750px) {
.rich-text__blocks { max-width: 100%; }
}
This works great. Thank you Dan!