Message # 1 | 11:20 PM
Hi, after uploading my site, ucoz changed my stylesheet declaration to "_st/my.css" and imported my styles into my.css, which is fine, but now that it is changed, I updated my style.css and need "_st/my.css" to refelct those changes.

Any way to force an update of my.css? I've tried re-uploading index.html and style.css cut neither updates my.css.

Thanks for any help!
Mark
http://sloggoth.clan.su/

Added (2016-05-04, 4:20 PM)
---------------------------------------------
I found it under

Home » Design customization » Editing templates » Style Sheets

Still, it's loaded and refreshed, but the ttf isn't being used...

Code
@font-face {
font-family: DIRTYBAG;
src: url("http://sloggoth.clan.su/css/DIRTYBAG___.eot") /* For IE 6+ */
}
@font-face {
font-family: DIRTYBAG;
src: url("http://sloggoth.clan.su/css/DIRTYBAG___.ttf") /* For CSS3 browsers inc. Firefox */
}

Added (2016-05-04, 11:20 PM)
---------------------------------------------
Fixed it.

FOR FUTURE REFERENCE:
Your custom fonts need to go into the ROOT of your website, and edit /_st/my.css to read a relative or fixed path:
@font-face {
font-family: DIRTYBAG;
src: url("http://sloggoth.clan.su/DIRTYBAG___.eot") /* For IE 6+ */
}
@font-face {
font-family: DIRTYBAG;
src: url("http://sloggoth.clan.su/DIRTYBAG___.ttf") /* For CSS3 browsers inc. Firefox */
}

http://sloggoth.clan.su/