Free Flarum hosting on an expert platform by FreeFlarum.com
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?
Leonart have you cleared cache and migrated the database (php flarum cache:clear
, php flarum migrate
). See also https://docs.flarum.org/troubleshoot/
Leonart your folder permissions are incorrect. Since this is not related to FreeFlarum, please see this discussion for more information
Users complain, that they can not upload Profil Picture:
Failed to load the image cropper.