Free Flarum hosting on an expert platform by FreeFlarum.com
- Edited
Do you also know how I can change the font of my forum without self hosting?
Do I have to self host to do that? My forum is a donation marked forum.
- Edited
Nziie in both instances, you should be able to use CSS to change the font and hide the login and password fields from the modals (although note that this is just a visual change, and it won't prevent people from logging in via password entirely)
I unfortunately can't share the exact CSS code at the moment. I can look at it tomorrow, if you want
how can i change my admin password?
I am trying to edit the custom css with this code but it is keeping the original css, which I don't want the top line there.
Code:
p a {
color: #3c4be7;
line-height: 1.25;
place-self: center;
text-decoration: none;
position:relative;
&:after {
position: absolute;
content: "";
bottom: -3px;
left: 0;
width: 100%;
height: 1px;
border-bottom: 1px solid;
transform: scaleX(0);
transform-origin: 100% 100%;
transition: transform .6s;
transition-timing-function: cubic-bezier(.39,.575,.28,.995);
}
&:hover {
&:after {
transform: scaleX(1);
transform-origin: 0 0;
}
}
}
Can someone help me?
Nziie add !important;
after the lines of code
Like this
p a {
color: #3c4be7 !important;
line-height: 1.25 !important;
place-self: center !important;
text-decoration: none !important;
position:relative !important;
&:after {
position: absolute !important;
content: "" !important;
bottom: -3px !important;
left: 0 !important;
width: 100% !important;
height: 1px !important;
border-bottom: 1px solid !important;
transform: scaleX(0) !important;
transform-origin: 100% 100% !important;
transition: transform .6s !important;
transition-timing-function: cubic-bezier(.39,.575,.28,.995) !important;
}
&:hover {
&:after {
transform: scaleX(1) !important;
transform-origin: 0 0 !important;
}
}
}
Hi, I'm planning to migrate to self-hosted, how do I export the data in FreeFlarum into a zip file and upload it to the new server? (including extensions, posts, users, etc.)
Leonart go to https://freeflarum.com/settings/account_settings and download your data from there. Note that this doesn't include the composer.json for extensions, you can find that here: https://github.com/FreeFlarum/flarum-multitenant/blob/master/composer.json
SKevo does Freeflarum backup the instances itself? if yes, how often?
https://api.freeflarum.com/settings/export is not loading.
what about uploads?