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 →
[–] [deleted] 0 points 1 point 1 point (+1|-0) ago
[–] 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.
[–] 4386703? [S] 0 points 1 point 1 point (+1|-0) ago (edited ago)
The link post doesn't have any text to display. That section is meant to display an image of the Dark Horse logo that then link to the Dark Horse website. Is the text pretty much everywhere else in the subverse that needs to be bigger, like the headlines, the button text, the link bar at the top that links to 'front' and 'all' and all the other subverses, the sidebar description text, etc, etc.
EDIT: Sorry, that was an overly complicated answer to your question. The answer should have been that I want all the font to be bigger.