Hi, I'm the mod over at /v/darkhorse. My problem is this: the font used for most things (headlines, sidebar text, etc.) is MUCH too small, and I can't seem to make it bigger. I'd like the font to be no smaller than 22px. But the only text that ends up being 22px can be seen under the "Advertize on Voat" and "ANNOUNCEMENTS" sections. Here's the CSS I use for font:
/*===Substitute default font with Google font===*/
@import url(https://fonts.googleapis.com/css?family=Patrick%20Hand%20SC:400,100,300);
body {
font-family: 'Patrick Hand SC', sans-serif;
font-size: 22px;
}
/*===Making sidebar image link===*/
/*===[Dark Horse](https://www.darkhorse.com/) must be in Subverse Settings > Sidebar Text to work!===*/
.side { padding-top: 250px; }
@media all and (min-width:871px) { .side { position: relative; } }
.side .md a[href="https://www.darkhorse.com/"] {
position: absolute;
top: 0;
display: block;
width: 100%;
height: 250px;
font-size: 0;
background: url(http://ultraimg.com/images/dark-horse-logo.jpg) no-repeat;
background-size: contain;
background-position: 40% 50%;
}
/*===Alternating Light/Dark===*/
.light #container {
background: rgba(255, 255, 255, 0.925);
}
.dark #container {
background: rgba(0, 0, 0, 0.9);
}
.light .submission {
background: rgba(255, 255, 255, 0.0);
}
.dark .submission {
background: rgba(0, 0, 0, 0.0);
}
What am I missing or otherwise doing wrong?
view the rest of the comments →
[–] 4387422? [S] 0 points 2 points 2 points (+2|-0) ago (edited ago)
I had to increase the font size a little, but that fixes it, @Voatman3! I experimented around a little with your suggestion, and I could out that...
... works also. It seems that all I was missing was the * after the body tag. I'll be using your whole solution though, as it seems more efficiently written anyways.