![]() |
|
Theme Improvements/New Theme - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: General (https://sinister.ly/Forum-General) +--- Forum: Announcements (https://sinister.ly/Forum-Announcements) +---- Forum: Suggestions (https://sinister.ly/Forum-Suggestions) +----- Forum: Old Suggestions (https://sinister.ly/Forum-Old-Suggestions) +----- Thread: Theme Improvements/New Theme (/Thread-Theme-Improvements-New-Theme) |
RE: Theme Improvements/New Theme - mothered - 05-21-2016 (05-20-2016, 11:17 PM)Customer Wrote: Definitely needs a better header. This ^^^ My exact thoughts, you beat me to It. RE: Theme Improvements/New Theme - Equinox - 05-21-2016 (05-21-2016, 03:25 AM)Oni Wrote: Don't be so stern, I keep thinking about the icebucket video. We mustn't speak of those times. But as pirate said, a good majority do want our old theme back. It was pretty good, and now the theme is decent at best. RE: Theme Improvements/New Theme - Aeolian - 05-21-2016 (05-20-2016, 11:39 PM)Oni Wrote: Better header is on the list. It will probably about as flat as it is now. Sweet, keep us informed. RE: Theme Improvements/New Theme - Pirate - 05-21-2016 (05-21-2016, 04:11 AM)insidious15 Wrote: Pft Did you not hear the #MakeSinisterlySexyAgain movement? RE: Theme Improvements/New Theme - Aeolian - 05-21-2016 (05-21-2016, 02:14 PM)Pirate Wrote: Did you not hear the #MakeSinisterlySexyAgain movement? No one did. RE: Theme Improvements/New Theme - Pirate - 05-21-2016 (05-21-2016, 02:16 PM)Aeolian Wrote: No one did. LMAO everyone did RE: Theme Improvements/New Theme - Anarchist - 05-22-2016 Is there any way I can enable a default posting font of my choosing? I've tried enabling a custom font using the Google extension, 'Stylish', which works on every other MyBB forum I visit, but it doesn't seem to show my custom Franklin Gothic font on Sinisterly for some reason. For the meantime, I'm using the font Trebuchet MS, and I'm having to enter in the BBcode manually every time I wish to use it, which is a pain in the backside, but I have it copied and pasted anyway, so it's not all that bad. Cheers. RE: Theme Improvements/New Theme - Dean Winchester - 05-22-2016 Actually you can choose a font by implementing a custom theme setting changer. Johnny S I believe had done it once on his Bootstrap based theme. RE: Theme Improvements/New Theme - Hero - 05-22-2016 Slightly lighter Red on the colour scheme. RE: Theme Improvements/New Theme - Equinox - 05-22-2016 (05-22-2016, 04:41 PM)Anarchist Wrote: Is there any way I can enable a default posting font of my choosing? I've tried enabling a custom font using the Google extension, 'Stylish', which works on every other MyBB forum I visit, but it doesn't seem to show my custom Franklin Gothic font on Sinisterly for some reason. That's not quite how Stylish works... Stylish injects a stylesheet with your styles into a page when the onload event is triggered. As such, the page can't access your custom fonts. You need to host the font else where, and write a font face rule in your CSS linking back to your font for that to work. Here's a rough example of how you can write the rule: Code: @font-face {
font-family: Name;
src: local("Name"), url("./path.type") format("type");
}Spoiler: Real use example (taken directly from my server's CDN dir)Code: @font-face {
font-family: Bravissima;
src: local("Bravissima"), url("./Bravissima.woff") format("woff");
}Misread. Tell me the selector you're using, and I can fix the attribute for you. Could possibly need to use !important. |