Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Back A Page

  • 09-10-2007 6:48pm
    #1
    Closed Accounts Posts: 388 ✭✭


    On some sites they have like a little hyperlink at the bottom left or right saying something like "Back a Page", and it always stays in that position dispite the resolution of the monitor..

    Does anyone know the code for that please? im having trouble on how to describe it in google..
    its for ict homework (:

    thanks.


Comments

  • Registered Users, Registered Users 2 Posts: 7,740 ✭✭✭mneylon


    It's probably using the javascript history function:
    <a href="javascript:history.go(-1)">back</a>
    


  • Closed Accounts Posts: 388 ✭✭Troublesome


    Thats the one, cheers mate,
    how do i position at the bottom left now and for it to stay there, dispite screen resolution, if you get me?


  • Registered Users, Registered Users 2 Posts: 706 ✭✭✭DJB


    That'll all depend on your design and you can use css to do it. If you post up your page, it shouldn't be too difficult to do. Off the top of my head, put this after your content:

    <div id="goBack"><a href="javascript:history.go(-1)">back</a></div>

    Then in your style sheet, specify the following:

    div#goBack { float: right; margin: 2px 20px 2px 0; }

    Play around with those style settings and you should get it to where you want.

    Rgds, Dave


  • Registered Users, Registered Users 2 Posts: 8,488 ✭✭✭Goodshape


    You could use position : fixed; or position : absolute; in your style sheet to either fix it to the screen (despite scrolling) or just put it at a specific location on the page (which will scroll away naturally).

    div#goBack { position : fixed; bottom : 10px; left : 10px; }


  • Closed Accounts Posts: 17,208 ✭✭✭✭aidan_walsh


    Or, better again, let the browser handle browser functions. Unless of course you have good reason not to.


  • Advertisement
Advertisement