this post was submitted on 19 Jul 2023
3 points (100.0% liked)
/kbin meta
25 readers
1 users here now
Magazine dedicated to discussions about the kbin itself. Provide feedback, ask questions, suggest improvements, and engage in conversations related to the platform organization, policies, features, and community dynamics. ---- * Roadmap 2023 * m/kbinDevlog * m/kbinDesign
founded 2 years ago
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
There is some issues with quotes for some reason in magazine styling. I have had to eliminate them entirely in some cases for it to work. For example, instead of this which would be correct (this changes the mag title font, btw):
section.magazine.section h4 { font-family: "DM Serif Display"; }
I had to eliminate the quotes and use this for it to work:
section.magazine.section h4 { font-family: DM Serif Display; }
And for adding a background image to your mag, instead of this, which would be correct usually:
#middle { background: url('imageURLhere'); }
You must do this in order for it to work:
#middle { background: url(imageURLhere); }
I can't seem to find a way to work around this with the content tag or using href. It doesn't look like either will work without the quotation marks. Any idea if there are other characters that can substitute in?