Questions tagged [footer]

In programming, a page footer (or simply footer) is part of page that is separated from the main body and appears at the bottom of a page.

In programming, a page footer (or simply footer) is part of page that is separated from the main body and appears at the bottom of a page. In publishing and certain types of academic writing, the footer is often where the page number is contained. In academic writing, it is often centered.

3457 questions
61
votes
6 answers

Creating templated/persistant header/footer template in jQuery Mobile and PhoneGap

I'm diving into writing a mobile app with jQuery Mobile/PhoneGap. I'm using this sample template to start from, which uses HTML/JS to create the pages. Rather than have all the tags in one single html file, he's got it split up so it's easier…
Luke Shaheen
  • 4,262
  • 12
  • 52
  • 82
58
votes
11 answers

How to add a footer to the UITableView?

I'me using this code to add a footer to the TableView. It has 20 sections, and each section a few rows. There's a titleForHeaderInSection, and sectionForSectionIndexTitle methods. CGRect footerRect = CGRectMake(0, 0, 320, 40); UILabel *tableFooter =…
Rui Lopes
  • 2,562
  • 6
  • 34
  • 49
57
votes
5 answers

Put an indeterminate progressbar as footer in a RecyclerView grid

How to get indeterminate circular indicator for "Scroll up to load more" in a grid RecycleView? The pattern is described there: http://www.google.com/design/spec/components/progress-activity.html#progress-activity-behavior in "Two-phased loads" and…
Alex Facciorusso
  • 2,290
  • 3
  • 21
  • 34
46
votes
9 answers

force footer on bottom on pages with little content

I have a page with only a couple of lines of content. I want the footer to be pushed to the bottom. I don't want to use #footer { position:fixed; bottom:0; } AKA Sticky Footer Is this possible without jQuery? any…
pom4ik
  • 463
  • 1
  • 4
  • 5
39
votes
4 answers

Is there a way to get a web page header/footer printed on every page?

Based on my research, it seems that what I want to do is not possible, but in case something has changed, I wanted to check to see if anyone had come up with a way to do this. I have a web app that generates reports for print based on user…
Carvell Fenton
  • 2,341
  • 6
  • 23
  • 30
37
votes
12 answers

How to make a sticky footer in react?

I've made a sticky footer higher-level component that wraps other components inside itself: Footer.js //this is a higher-order component that wraps other components placing them in footer var style = { backgroundColor: "#F8F8F8", borderTop:…
Poliakoff
  • 1,592
  • 1
  • 21
  • 40
36
votes
11 answers

Changing UITableView's section header/footer title without reloading the whole table view

Is there any way to reload the section header/footer of a table view without calling [tableView reloadData];? In fact, I want to show the number of cells in a table view's section in its section footer. The table view is editable and I delete or…
Ali
  • 829
  • 1
  • 8
  • 9
36
votes
4 answers

Should role="contentinfo" be always added on footer element?

On ARIA demonstration websites, role="contentinfo" is usually added on footer element. However, footers in modern web design can be creative so that they can also contain things like supplementary navigation links, social website links, or even a…
Ian Y.
  • 2,293
  • 6
  • 39
  • 55
35
votes
5 answers

floating footer always on the bottom and visible

I have a website like this one: >> website <<. It is built from 2 frames - main and a footer. I was trying to get it working without frames (don't work on mobile phones). Is there any simple CSS or jQuery method to stick the footer on the bottom to…
Piotr Ciszewski
  • 1,691
  • 4
  • 30
  • 53
34
votes
6 answers

Empty space between listview header and first item

I've created an android application with a ListView. I've added both a header and footer to the list. But when adding a divider/separator it also creates an empty space between the header and the first ListView item. It does the same for the last…
Niles11
  • 553
  • 1
  • 6
  • 17
30
votes
1 answer

How can I add a custom footer to Sphinx documentation?

If I have some documentation, like for example Galleria's documentation, how can I set it up so that when I run the make html command it will add a custom footer to each page? I saw that I could potentially use the LaTeX preamble section of conf.py…
cwd
  • 53,018
  • 53
  • 161
  • 198
30
votes
4 answers

Remove white space below footer

There's always a large empty white space below my footer. How do I ensure that the page ends at the end of the footer?
lagertha281
  • 311
  • 1
  • 4
  • 3
29
votes
6 answers

Footer below content, but not floating mid-air if not enough content

I got this code: DEMO: http://jsfiddle.net/z21nz89d/2/ HTML:
26
votes
10 answers

How can I force my footer to stick to the bottom of any page in CSS?

This is my code: #footer { font-size: 10px; position:absolute; bottom:0; background:#ffffff; } I've no idea what is wrong with this - can anyone help? EDIT: For some more clarity on what's wrong: The footer is displayed on the bottom as…
oxo
  • 4,343
  • 10
  • 32
  • 35
25
votes
5 answers

UITableView footerView with button, button doesn't work

I'm trying to create a custom view for my UITableView footerView that has a button in it. I can see it there, but when I touch it, nothing happens... can you see what's wrong here: - (void)viewDidLoad { [super viewDidLoad]; …
Steve N
  • 2,667
  • 3
  • 30
  • 37