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

Sanguine Hmm... You should think about turning it into an actual footer with a wrapper and all, plain text can kill a forum or forum hosting service. ?

    Felli What do you mean with a wrapper? Examples welcome ?

      Sanguine An easy to use box-like effect you'd want to use something like the following, but I'm sure that other's could provide a better example of how to do this with Flarum.

      footer{
          width: 100%;
          padding: 25px;
          border: 25px solid navy;
          margin: 25px;
          border-radius: 15px;
      
          font-size: 2em;
          text-align: center;
          font-weight: bold;
      }

      You sure about that?

      I was planning to keep it small and unobtrusive ?

      And still not sure what you mean by a "wrapper" ? There's already a div?

        Freeflarum is great, so i don't see any problem with this footer and ads that will be displayed in future. Maybe some background could be added if u want for footer to be seen even on custom backgrounds with dark colors etc.

        Felli I think I have a solution for him ? A small widget under the tags would be the best approach. A simple message at that.

          Ralkage I didn't even think of that, would be a better solution to the problem. ?

          Zeokat removed redirection.

          @Sanguine I suggest in robots.txt close type pages
          http://mysite.com/?sort=oldest
          http://mysite.com/?sort=top
          _http://mysite.com/?sort=newest

          It's 100% duplicate and bad for Google

            How Delete a account? example vamosvirar at freeflarum

              luceos Searching via mobile is rather time-consuming at the moment. ?

              @Sanguine Is it possible to remove Google fonts? as it's blocked here, this makes it very slow.
              Or upload the fonts onto the FreeFlarum server.

                jazzi

                If you alter the CSS, so that the Google font isn't used anywhere, it won't be requested even with the linked stylesheet still in place.

                In my forum I have changed the font to Titillium Web by adding the necessary stylesheet via the admin interface (Appearance > Custom Header) and requesting the font via custom CSS (Appearance > Custom Styles). So now I have two linked Google fonts stylesheets:

                <head>
                    ...
                    <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,600">
                    ...
                </head>
                
                <body>
                    <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Titillium+Web">
                    ...
                <body>

                Now, let's have a look at the web page test results (go to the Details tab): Two small CSS files from Google are requested, but only one font, the Titillium Web. The Open Sans fonts are not loaded:

                ...
                3: https://fonts.googleapis.com/css?family=Titillium+Web
                4: https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,600
                ...
                9: https://fonts.gstatic.com/s/titilliumweb/v6/7XUFZ5tgS-tD6QamInJTcZSnX671uNZIV63UdXh3Mg0.woff2
                ...

                I'm not shure, whether files from fonts.googleapis.com are blocked as well, that might still cause delays, but if only files from fonts.gstatic.com are blocked, then overriding the Google font via custom CSS should solve your problem. It's worth a try:

                body {
                    font-family: 'Arial,sans-serif;
                }