Fixed  "contact us" active and small text on a 1360:768, 1600:900

Accreal

Member
Now more notebook used 1360:768, 1600:900. My notebook support 1 variant.
On notebook text display very small. And "contact us" active out side display button
screenshots "contact us" active, small text.
2011-02-01_.webp23240000.webp2011-02-01_130242.webp
all screenshots print notebook 1360:768.
 
Fixed. The contact us form will now scroll with the page, so you can reach the buttons.
 
Note that we use a custom contact us form here, so you won't see the effect on xenforo.com itself.
 
We pass an option to the contact us form now, which changes the overlay from position: fixed (which is desirable in most cases) to position: absolute, which allows the overlay to scroll freely with the window.

Here is the code to do that:

<a href="{xen:link 'misc/contact'}" class="OverlayTrigger" data-overlayOptions="{&quot;fixed&quot;:false}">

You can pass any other overlay options in this way too. The list of overlay options available is described here:

http://flowplayer.org/tools/overlay/index.html#configuration

As you can see, we are passing a JSON object which sets 'fixed' to false.
 
Top Bottom