I would like to modify the text links in the desktop display of the shop’s header, adding “font-weight: bold;” or font-weight: 700" to the appropriate block of code. But I cannot locate where it should be added, or to which file.
I would also like to modify the width in the desktop display of the “Rich Text” section that appears immediately below the header. It’s set for “Make Section Full Width”, but it’s nowhere near full width.
How do I make sure those changes affect only the desktop version of the store, not the mobile version?
Is there any decent documentation of the css code that I can review? Something? ANYTHING??? it’s one thing to know css - it’s quite another thing to decipher the schematics to easily determine what part of the code affects what part of the display. Inline documentation is absent.
Try adding these few lines to the bottom of /assets/base.css:
.header__menu-item span {
font-weight: bold;
}
Your store is still password protected so I can’t see the frontend but based on the Dawn code (which I believe Craft is largely based on) that should do the trick?