@lady1178 – The plugin hooks into wp_footer
call in the theme so although it may be possible it is definitely not something that was considered when the plugin was written.
What CSS were you trying to use?
Something like this will set the widget output into the bottom left corner of the screen:
.bnsaw-credit {
position: fixed;
bottom: 0;
left: 0;
}
The key is the position: fixed;
property.
~Cais.
PS: I may do a more significant refactor of this plugin so remember to check the HTML elements that are available after updates to ensure the same one works as the bnsaw-credit
class which really shouldn’t be the one to be used but it is the one I would recommend with the current build. C.