How could you add a background watermark to the content part of a page? Adding a logo/watermark seems hard to do for me. I can't get it the size I want.
Posted2 weeks 6 days ago by Erik Wesselius (zilvervos) in Other
Recent comments
The issue with checking for updates in the BackdropCMS dashboard makes website development and maintenance more difficult. I manage more than ten websites hosted by two different providers, one...
Recently came back to see if translation issues are fixed, with the latest version:
Page translations are fixed, but the issue with taxonomy and menus are still there. Localized terms show...
Possible agenda item: For docs.borg, maybe the non-code syntax related documentation and policies should go under a new "Organization Policies" section? Not the most pressing or exciting idea...
For reference on #2, I did open an all-encompassing issue for the technical side (I haven't had time to work on it yet): https://github.com/backdrop-ops/backdropcms.org/issues/1107
As for...
Comments
Add some markup to your page for the watermark and some css to style it as a watermark.
Here is the markup I've added to this page:
and here is the css i've added:
#background-container { position: relative; } #background { position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: 37; color: red; transform: rotate(45deg); font-size: 92px; }Here is the stackoverflow reference: https://stackoverflow.com/questions/1191464/is-there-a-way-to-use-use-te...