?? Layout Not Applying
?? Layout Not Applying
|
|
---|---|
Posted 2022-06-07 20:34:05
Getting back into Wolvden solely for CSS. I'm treating it similarly to Lioden and have uploaded my code the way my original was, an unaltered Dropbox link into the CSS bar, and nothing happens. I've tried altering it similar to a Lioden code, generating a share link, etc. Nothing. What am I missing? Thanks! :) |
DandyTheGhost #29275 |
Posted 2022-06-07 22:28:50 (edited)
I've tried different image hosting sites, different images, scrapping all the unnecessary code. No dice. I've tested free to use CSS layouts and they work, for some reason, even though I'm using the same background code. Open to any ideas whatsoever. I'm sure it's something super super simple that I'm just not getting for some reason, go easy on me lmao |
DandyTheGhost #29275 |
Posted 2022-06-07 22:55:35
|
fireflii #757 |
Posted 2022-06-07 23:02:10
|
DandyTheGhost #29275 |
Posted 2022-06-07 23:02:59
|
fireflii #757 |
Posted 2022-06-07 23:04:06 (edited)
Dropbox link: https://www.dropbox.com/s/itwt3cfmw7p1tca/mistyForestTester.css?dl=0 Thanks for going through all the trouble! All the code was taken from a previous file I had here that did work, all that changed was the background img. And somehow now that file also doesn't work |
DandyTheGhost #29275 |
Posted 2022-06-07 23:26:12
@media screen (min-width:601px){ I'd also recommend going through and fixing some of your code. At a skim, there are a few lines I see where the syntax is messy/incorrect/etc. (for example, in your body selector, your "font-variant" has an improper semi-colon after the small-caps). Instead of font-variant: small-caps; !important; , it should be font-variant: small-caps !important; . In another example, for your progress bar, you have background: background: rgba(138, 106, 68, 0.1) !important; where you have background: twice. Things like that will be why some code is working and not others.
|
fireflii #757 |
Posted 2022-06-07 23:30:50
|
DandyTheGhost #29275 |