Hey,
You could do it, though I would probably need to see your website for some exact code.
You can add this in a regular text widget:
<a href="http://yoururl.com/contact" class="welcome-button fixed-button">Button</a>
And this in a custom CSS plugin:
.fixed-button {
position: fixed;
top: 50%;
right: 30px;
z-index: 9999;
}
And adjust as needed.
Hi Vlad,
Sorry for the late reply.
I managed to tweak things to get what I wanted, thanks to your input of course.
thank you!
I don’t know if what I did was the most simple solution.
I basically copied the welcome-button styles to this new fixed-button,
gave it a fixed width (150px) and used your top, right and z-index attributes.
Well, that’s why I added the .welcome-button class in that link, so you don’t have to copy the styles 🙂
hehe… Newbie here.
Just removed the redundancies and all works perfect.