Quote:
Originally Posted by SemperFideles
I shouldn't complain, it is very good work.
I have an iteration of this that I have modified that you can see here: http://www.puritanboard.com/index.php?styleid=27
I have added the security tokens back into the style. I've also put the New Thread button back in the FORUMDISPLAY template, added the Quote back into the postbit template, and added the Reply button back into the SHOWTHREAD template.
It uses the default buttons for display so you can modify that if you want.
I've also changed the Spanish controls into English.
Finally, I've removed the custom image in the header template so the header image may be customized in the Style Options.
|
Just installed this on my site and it looks great! One problem I'm encountering on my iPhone, and this happens when I visit your site as well, the jump to last post button isn't working correctly. It just takes me to the last page, but not down to an anchor for the last post itself. Any idea why this is happening?
In fact, the same thing is happening on Elforro's site with his style. It will jump me to the last page of a thread, but not down to the last post. If I test it on Firefox or IE it will work just fine and go down to the anchor, but on the iPhone it's not jumping down to the anchor like it should.
UPDATE: Ok, I figured out why this was happening. This javascript in headinclude causes iPhones to jump back up to the top of the screen. Commenting that out makes the anchors work correctly.
Code:
<script type="application/x-javascript">
if (!!navigator.userAgent.match(/.*Mobile.*Safari/))
{
addEventListener("load", function()
{
setTimeout(hideURLbar, 0);
}, false);
}
function hideURLbar()
{
window.scrollTo(0, 1);
}
</script>