• Resources
  • Free Flarum hosting on an expert platform by FreeFlarum.com

luceos What if I want to upload a custom font? or do I have to use google fonts?

Never mind

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?
Image

    Yolo in the login modal at your forum, click the "Forgot password?" link. If you are logged in, go to your Flarum account settings and click on the "Change Password" button

    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;
        }
      }
    }

    @SKevo my site is not loading anymore. it is shown nothing

    Update: Works again.

      Trc4 I was cleaning up inactive forums with less than 2 posts to free up disk space until I migrate to a better hardware. Sorry for the downtime

      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.)

        SKevo Thank you! So, one more question, how to import csv files into new forum?

          Leonart the CSV export is irrelevant, use the "Download Data" button above which contains the correct files required for import. I implemented CSV export on request of one forum, for Excel analysis purposes, and it's not meant for migration

            Yolo the URL should load if you are logged in. What error/response does it show?

            As for your original question, yes FreeFlarum backups the database and assets of all forums every day at 23:00. The export through FreeFlarum's site is always live though

            Steve33 IIRC, the entire assets folder is in the export, which includes uploads and other extension assets. This should also be the case for automatic backups

              SKevo Hi, I have done import the sql provided in the downloaded backup, in Phpmyadmin still showing posts, discussions but when I go to my new forum, there are no discussions show up, so can you help me? Thank you

                SKevo I tried import the databases, commands and restarting xampp, but nothing happened 🙁

                  Users complain, that they can not upload Profil Picture:
                  Failed to load the image cropper.

                    Trc4 there should be something in the JavaScript console. What's your forum URL please? May I create a temporary account to test this?