Free Flarum hosting on an expert platform by FreeFlarum.com
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.
@Sanguine add please https://discuss.flarum.org/d/1903-flagrow-split-separates-posts-to-a-new-discussion
Useful extension
- Edited
Sanguine I don't recommend hide text with links. You can get a penalty by Google, but maybe you don't care, not sure.
P.S: Someone redirected you http://prohandmade.info -> https://www.freeflarum.com/
?
- Edited
Zeokat P.S: Someone redirected you http://prohandmade.info -> https://www.freeflarum.com/
How did you find out?
Fla I suggest in robots.txt close type pages
Thanks, added to all robots.txt!
How Delete a account? example vamosvirar at freeflarum
ValessioBrito
I would think using email to request a deletion would do.
@Sanguine insert email here
?
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;
}