#footer — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #footer, aggregated by home.social.
-
Ha. Well done to the World Cup winners. The other team showed themselves up. #footer
-
Ha. Well done to the World Cup winners. The other team showed themselves up. #footer
-
How To Add a Brand Logo in Your WordPress Website Footer? https://www.youtube.com/watch?v=1DAAc0G-4dY 💡🎬⭐️ #Logo #Brand #WordPress #Footer #Guide
-
How To Add a Brand Logo in Your WordPress Website Footer? https://www.youtube.com/watch?v=1DAAc0G-4dY 💡🎬⭐️ #Logo #Brand #WordPress #Footer #Guide
-
How To Add Social Media Icons to Website Footer in WordPress? https://www.youtube.com/watch?v=yV2lntjarwE 🎬💡👍 #Add #Social #Media #Icons #Footer #WordPress #Tutorial
-
-
-
https://www.lovenhl.com/1517846/ Jake DeBrusk, Tyler Myers & Adam Foote Practice Media Availabilities (Feb 24, 2026) #AdamFoote #Canucks #CanucksCoach #footer #game #HeadCoach #highlights #hockey #JakeDeBrusk #news #NHL #PacificDivision #players #team #TylerMyers #Vancouver #VancouverCanucks #WesternConference
-
Drew O’Connor & Head Coach Adam Foote Pre-Game Media | Canucks vs Blue Jackets (Nov 8, 2025) https://www.rawchili.com/4655444/ #AdamFoote #Canucks #Canucks18 #CanucksCoach #doc #DrewO'Connor #footer #game #HeadCoachAdamFoote #HIGHLIGHTS: #hockey #news #NHL #O'Connor #Players #team #Vancouver #VancouverCanucks #VancouverCanucks
-
Ower mony fittert aboot, luikin fer somethin, tae haud ontae. Anely, thay coudnae find onythin while reakin oot.
---
(Ah'm nae native spikker.)#Scotstober 2025-02nt #footer
#WriteInScots #Scots #Doric
#WritingCommunity -
Ower mony fittert aboot, luikin fer somethin, tae haud ontae. Anely, thay coudnae find onythin while reakin oot.
---
(Ah'm nae native spikker.)#Scotstober 2025-02nt #footer
#WriteInScots #Scots #Doric
#WritingCommunity -
How To Organize Footer Widgets Using Astra WordPress Theme? FREE https://www.youtube.com/watch?v=uiHBoWLcKXs 🎬💡🚀 #Organize #Footer #Widgets #WordPress #Astra #Guide
-
How To Organize Footer Widgets Using Astra WordPress Theme? FREE https://www.youtube.com/watch?v=uiHBoWLcKXs 🎬💡🚀 #Organize #Footer #Widgets #WordPress #Astra #Guide
-
How To Add & Customize Copyright Footer in Astra WordPress Theme? (FREE) https://www.youtube.com/watch?v=wvBgAlmkI9Y 🚧🔧🎬 #Customize #Copyright #Footer #WordPress #Astra
-
How To Add & Customize Copyright Footer in Astra WordPress Theme? (FREE) https://www.youtube.com/watch?v=wvBgAlmkI9Y 🚧🔧🎬 #Customize #Copyright #Footer #WordPress #Astra
-
Die Neugestaltung des Blogs war gestern bis auf ein Bereich fertig. Den wollte ich nun vervollständigen und hielt es für einen Klacks. Was habe ich mich doch getäuscht. Ist der Code bisher sauber wie aus dem Lehrbuch, verlangt die Navigation im #footer Klimmzüge und (erste) Brücken. Zudem macht die #flexbox nicht das, was sie ihrem Namen nach tun sollte.
Ich bin ja bereit zu akzeptieren, dass das Unvermögen vorm Monitor sitzt. Aber wenn ich bei Null anfange, mich nach den Angaben aus dem Buch – immerhin aus der "für Dummies"-Reihe – richte und nicht das passiert, was passieren sollte – und ich wirklich nicht derart unterbelichtet bin, um Vorgaben nicht fehlerfrei abschreiben zu können –, dann kennt auch meine Geduld Grenzen. Unbefriedigend.
-
How To Remove Visualmodo WordPress Theme Copyright Footer? https://www.youtube.com/watch?v=ICczjeihDDA 🎬💡🖥 #Coding #Guide #WordPress #Visualmodo #Themes #Footer
-
How To Remove Visualmodo WordPress Theme Copyright Footer? https://www.youtube.com/watch?v=ICczjeihDDA 🎬💡🖥 #Coding #Guide #WordPress #Visualmodo #Themes #Footer
-
@Elsental one ‘calls’ the function with something like this:
let parent = document.querySelector('#footer > span');
changeText(parent, 'Powered by', 'New text ');The first line is effectively “Find me the first child span element of an element with an id of 'footer'”.
The second line is calling the changeText function and passing to it as variables:
The selected parent
The before text: 'Powered by'
The after text: 'New text ' -
@Elsental one ‘calls’ the function with something like this:
let parent = document.querySelector('#footer > span');
changeText(parent, 'Powered by', 'New text ');The first line is effectively “Find me the first child span element of an element with an id of 'footer'”.
The second line is calling the changeText function and passing to it as variables:
The selected parent
The before text: 'Powered by'
The after text: 'New text ' -
HOW TO MAKE A HEADER / FOOTER ON EVERY PAGE WITHOUT STEPPING ON PAGE CONTENT
We've all wrestled with it, you want to print an HTML page that displays a header/footer right at the top/bottom of every page. But then that goal quickly gives way to a second goal: how do you make the content of your page NOT occupy the same space as your header/footer?
After a lot of rasslin' with this, I noticed something about one of the tables in my content: its "thead" and "tfoot" section appeared on each page. That's when inspiration struck: suppose I contain my entire document inside one massive table in a single cell, and this table has "empty" thead and tfoot sections big enough to accommodate my header and footer?
And it worked. Here is the page I came up with; download and enjoy.
https://www.paprikash.com/headerfooter.html
Things to take note of:
- I have this set up such that the header and footer display only when you print. So don't expect to see them on the screen. More on that later.
- The body of this thing is composed of a "header" section, then a "div" that contains a table (which has a "thead" and a "tfoot"), and finally a "footer" section.
- The header and footer are both "position:fixed" to the top and bottom respectively, and they each have a fixed height. They also contain a little bit of text.
- The thead and tfoot in the table also have fixed heights, that match the heights of the header and footer. They're also empty other than a non-breaking space. This is so, technically, the thead and the tfoot will print on the same spot as the header and footer, but since they have no visible characters, all that gets printed is the header and the footer.
- I'm making use of the "@media print" and "@media screen" to create classes called "screenonly" and "printonly". Any element with a class of "screenonly" will not be printed, and any element with a class of "printonly" will not be visible on the screen. My header, footer, thead, and tfoot are all "printonly", while the print button is "screenonly". This is a really great and simple trick.
- I'm also making the text size bigger on the printed document. It looks better.
- I am doing something that a lot of people don't like: I'm putting most of my CSS inline, rather than in the "style" section of the document or a separate stylesheet. For me anyway, it's clearer to see the style info right in the one element that it applies to, and I'm focused on clarity. You have my blessing to move the inline CSS to the "style" section.
-
HOW TO MAKE A HEADER / FOOTER ON EVERY PAGE WITHOUT STEPPING ON PAGE CONTENT
We've all wrestled with it, you want to print an HTML page that displays a header/footer right at the top/bottom of every page. But then that goal quickly gives way to a second goal: how do you make the content of your page NOT occupy the same space as your header/footer?
After a lot of rasslin' with this, I noticed something about one of the tables in my content: its "thead" and "tfoot" section appeared on each page. That's when inspiration struck: suppose I contain my entire document inside one massive table in a single cell, and this table has "empty" thead and tfoot sections big enough to accommodate my header and footer?
And it worked. Here is the page I came up with; download and enjoy.
https://www.paprikash.com/headerfooter.html
Things to take note of:
- I have this set up such that the header and footer display only when you print. So don't expect to see them on the screen. More on that later.
- The body of this thing is composed of a "header" section, then a "div" that contains a table (which has a "thead" and a "tfoot"), and finally a "footer" section.
- The header and footer are both "position:fixed" to the top and bottom respectively, and they each have a fixed height. They also contain a little bit of text.
- The thead and tfoot in the table also have fixed heights, that match the heights of the header and footer. They're also empty other than a non-breaking space. This is so, technically, the thead and the tfoot will print on the same spot as the header and footer, but since they have no visible characters, all that gets printed is the header and the footer.
- I'm making use of the "@media print" and "@media screen" to create classes called "screenonly" and "printonly". Any element with a class of "screenonly" will not be printed, and any element with a class of "printonly" will not be visible on the screen. My header, footer, thead, and tfoot are all "printonly", while the print button is "screenonly". This is a really great and simple trick.
- I'm also making the text size bigger on the printed document. It looks better.
- I am doing something that a lot of people don't like: I'm putting most of my CSS inline, rather than in the "style" section of the document or a separate stylesheet. For me anyway, it's clearer to see the style info right in the one element that it applies to, and I'm focused on clarity. You have my blessing to move the inline CSS to the "style" section.
-
How To Remove Neve WordPress Theme 'Powered By WordPress' Footer Text ❌ https://www.youtube.com/watch?v=eV2Ha0D1zSM 🎬💡 #Guide #Remove #Neve #WordPress #Theme #Footer
-
How To Customize WordPress Website Footer Section Using Block Themes? https://www.youtube.com/watch?v=dl_YdqiYXew 🎬📝🎨 #Customize #WordPress #Website #Footer
-
How to Create a Sticky Floating Footer Bar in WordPress For Free? https://www.youtube.com/watch?v=crW5iv5qbQM 🎬🔌🖇️ #Sticky #Floating #Footer #WordPress #Guide
-
#qotd, Joe Weisenthal: “If it’s true that they torched an $80 billion company cause they thought they were too close to building God, then that’s orders of magnitude the most punk rock thing I’ve ever heard of.”
https://www.bloomberg.com/opinion/articles/2023-11-20/who-controls-openai#footer-ref-footnote-8
-
#qotd, Joe Weisenthal: “If it’s true that they torched an $80 billion company cause they thought they were too close to building God, then that’s orders of magnitude the most punk rock thing I’ve ever heard of.”
https://www.bloomberg.com/opinion/articles/2023-11-20/who-controls-openai#footer-ref-footnote-8
-
#Design #Collections
Footer · A website footer gallery for your design inspiration https://ilo.im/15b1ht -
#Design #Collections
Footer · A website footer gallery for your design inspiration https://ilo.im/15b1ht -
@OBSProject i fixed your website for > 1080p monitors:
```css
#footer, #wrapper {
max-width: unset !important;
}
#header {
max-width: 2200px;
margin: 0 auto -60px;
position: relative;
}
body {
background: #0c1633 !important
}
``` -
@OBSProject i fixed your website for > 1080p monitors:
```css
#footer, #wrapper {
max-width: unset !important;
}
#header {
max-width: 2200px;
margin: 0 auto -60px;
position: relative;
}
body {
background: #0c1633 !important
}
``` -
#Design #Guidelines
Best practices for website footer UX · More user engagement with a well-crafted website footer https://ilo.im/12ku8p“A website’s footer is often overlooked, but it can actually make a big difference in how easy it is for users to find what they need on your website.” — Eric Chung
_____
#ProductDesign #UxDesign #UiDesign #WebDesign #Website #Footer #Engagement #Testing -
#Design #Guidelines
Best practices for website footer UX · More user engagement with a well-crafted website footer https://ilo.im/12ku8p“A website’s footer is often overlooked, but it can actually make a big difference in how easy it is for users to find what they need on your website.” — Eric Chung
_____
#ProductDesign #UxDesign #UiDesign #WebDesign #Website #Footer #Engagement #Testing -
Um zu zeigen, dass wir das Fediverse klar favorisieren, haben wir mal die Reihenfolge im #Footer unserer Webseite angepasst.
-
Um zu zeigen, dass wir das Fediverse klar favorisieren, haben wir mal die Reihenfolge im #Footer unserer Webseite angepasst.
-
For those about to dig into HTML or invent some javascript: You shouldn't necessarily be updating the #footer #copyright year annually. You don't need a footer date at all - if you do it should show when the content was first published.
Articles can show their publication dates individually.
If you're keen to have one, you can show original date through last-update date. Only showing the most recent year, you're implicitly releasing your prior work, which might be hard to defend later. -
anyone know anything about javascript and why it isn't giving me errors but does nothing?
using html script tags with
$(document).ready(function(){
$("iframe").contents().find("#footer").hide();
});names are correct but did i miss identifying something? does contents or function need to be defined?
-
Skulls…
So, in the last few weeks, I have been doing a lot of WordPress theme development. When I see something cool on the web, I want to implement it a new a cool way. Skulls is basically the end result of some tinkering on the web. Here are some of the methods that I used in this theme.
1. Font Replacement
I read a great article on CameronMoll.com called Exploring Cufón, a sIFR alternative for font embedding. Cufón is this rad javascript library that will exchange text with a font resides on your server. A friend of mine, Tyrel Kelsey showed me an example on a site that he designed using the script, and from there, I was set. Immediately, I knew that I wanted to create a grungy WordPress theme that I could use this on.
2. Fixed Footer
Nothing terribly revolutionary, but after staring at Facebook everyday, I wanted to put a persistent footer, that would have a couple of quick links in it. To create a fixed footer, simple add the following code to your div.
Make sure to add some bottom-margin to whatever div is going to be above it. You want to make sure you do that, so when you scroll to the bottom, you can see all of your content.
[css]
#footer {
margin:auto;
position:fixed;
margin:auto;
left:0;
bottom:0;
height:40px;
width:100%;
background:#242424;
z-index:1999;
}
[/css]
There are a couple of issues that in IE6 (Go figure…) But they can be resolved by adding this:
[css]* html #footer {
top:expression(eval(document.compatMode && document.compatMode==’CSS1Compat’) ? documentElement.scrollTop +(documentElement.clientHeight-this.clientHeight) : document.body.scrollTop +(document.body.clientHeight-this.clientHeight));
position:absolute;
}
[/css]3. SUPER-ULTRA-RAD GRAPHICS
I mentioned already the font replacement. I found some cool vector packs that had some skull designs in them. The post headers have a banner that overlays the other divs due to some negative margins. One thing to be aware of, if you follow a similar design, is to make sure that links have the coverage that they might need. I had them squeezed a lot tighter, but it was hard to click on the post links.
So, all in all, I think that it turned out to be a pretty cool theme. Not for everyone, but I think that someone will get a kick out of it.
#cufon #development #fixedFooter #footer #theme #WordPress