Hey guys,
We are currently using the Theme Builder Plugin.
When pages are empty, or if they contain little content, the footer rises up to meet the bottom of the main Content.
Is this a potential bug, or is this the way Theme Builder was designed?
The problem was produced on Confluence 3.0, TB 3.3.6, I then backed up my layout, migrated it to a Confluence 3.1, TB 4.0.1 and the issue persists. Can I make the footer stick to the bottom of the window regardless of the absence of content?
Thanks & Cheers,
JA
.png)








Comments (9)
May 05, 2010
james lyons says:
I'm using conf 3.2, builder 4 and found the following works to stick the footer ...I'm using conf 3.2, builder 4 and found the following works to stick the footer to page base:
.atb-footer {
position:absolute;
bottom: 0;
}
May 06, 2010
james lyons says:
Actually, turns out that doesn't work so well.Actually, turns out that doesn't work so well.
May 06, 2010
Alain Moran says:
Use the custom html settings on the html tab to insert a div into the document o...Use the custom html settings on the html tab to insert a div into the document outside of the html structure ... if your content is dynamic & related to the page (and not javascript based) then you can use the move-to macro to relocate it out of the footer and into the placeholder you inserted into the custom html. If however your content is javascript based as well as being wiki-markup generared then you will need consultancy to help you locate a solution.
May 11, 2010
james lyons says:
Thanks Alain, turns out what i had worked fine in FF but webkit browsers ...Thanks Alain,
turns out what i had worked fine in FF but webkit browsers weren't happy with it at all. Ho hum.
Your solution is a much better way of dealing with it.
thanks again,
james
Jun 22, 2010
David Aldrich says:
Hi Forgive me for jumping in here, but I think that my problem may be similar t...Hi
Forgive me for jumping in here, but I think that my problem may be similar to the one described. On one of our Confluence pages we have a card deck. One of the cards dynamically creates content using:
{table-plus:sortIcon=true|sortColumn=1|sortDescending=true}
{metadata-report:Page,Gate Status,Project Name,Project Description, Project Status, Home Page,Last Time Changed}
{table-plus}
In Confluence 2.10.3 this works fine. A long auto-generated list of items is displayed, extending beyond the screen height.
In Confluence 3.2.1, the same list is generated but the page footer appears at the bottom of the screen and, if the window is vertically scrolled, the footer sticks at that same point in the list such that it scrolls upwards with the list and appears in the middle of the list.
Is this the same problem that you are describing?
If so, I guess I should try Alain's suggested fix. Where is the 'custom html settings on the html tab' ? Do we need the html macro installed to make this work?
Best regards
David
Jun 22, 2010
james lyons says:
Please, jump in anytime! No, i was just trying to get a small graphic element p...Please, jump in anytime!
No, i was just trying to get a small graphic element pinned to page footer irrespective of the content such that scrolled off-page content would roll out from underneath it. Mine was a purely cosmetic addition, what you've got sounds like a real formatting issue, and an ugly one to boot.
I think Alain's fix should do what you want, it'd certainly be a good starting point, also, what browsers have you seen this in?
Jun 22, 2010
David Aldrich says:
I'm seeing it in Firefox 3.6.3. I found a similar issue here: http://jira.atlas...I'm seeing it in Firefox 3.6.3. I found a similar issue here:
http://jira.atlassian.com/browse/CONF-18332
They recommend resetting the site layouts to defaults but that did not fix our problem.
Jun 22, 2010
james lyons says:
That's a weird one, never seen anything like that, i'd try applying some styles ...That's a weird one, never seen anything like that, i'd try applying some styles to the footer to pin it:
position:absolute;
bottom: 0;
maybe.
I'm guessing you're using a custom theme of your own creation? If so i'd say the bug you mention and 17402 (it's dupe) are correct, "it's a brittle upgrade process".
what a PITA! sorry,I don't have much else to offer
Jun 22, 2010
David Aldrich says:
We found that the problem was related to the {card} macro. Found an un-paired {c...We found that the problem was related to the {card} macro. Found an un-paired {card} macro on the problem page. On removal the page is OK. Interesting to note that the mark-up error caused no problem in Conf 2.5 and Conf 2.10.
Thanks for your help.