PDA

View Full Version : is this possible?


wullieclsfb
06-08-2011, 05:48 PM
Have a look at http://mydownloader.net/ on the right hand side you will see a button saying feedback wich stays there as you scroll up or down is there anyway i could do this on my forum linking it to my contact us page?

BirdOPrey5
06-08-2011, 11:38 PM
That is an "absolute/fixed positioned" element... read up on CSS on things you can do...

Put this in your additonal css template:


.feedback-button {
display: block;
width: 30px;
height: 106px;
position: fixed;
_position: absolute;
right: 0;
top: 50%;
z-index: 98;
margin: -58px 0 0 0;
cursor: pointer;
}


And put this in your footer:

<span class="feedback-button" style="background: url(http://mydownloader.net/img/en/feedback.gif) 0 0 no-repeat;"></span>

That site uses a custom javascript to pop up a contact forum but you should be able to link it to your contact us page.

wullieclsfb
06-09-2011, 11:16 AM
Thanks for that got it working now :)

RobbieZ
06-09-2011, 01:00 PM
Or make your own :D

https://vborg.vbsupport.ru/external/2011/06/66.jpg


Any colour, any font :p

Hit me up ;)

BirdOPrey5
06-09-2011, 01:11 PM
Good point... Although I gave yo the code to use their image, I did assume (hope) you realized you should replace it with your own image and not hotlink off their graphic. :)