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 16 hours ago by (indigoxela) in Weekly Meetings
Recent comments
To add a summary of event details to the list below the title and customize the way the time is displayed.
If this is part of the library then I guess the easiest way is to create a list...
AFAIK, this is part of the FullCalendar library and it doesn't create a separate View Display. If you want to customise the look and feel, you will need to target the elements with CSS....
Posted13 hours 31 min ago by Martin Price | System Horizons Ltd (yorkshirepudding) on:
CSS - font-weight: bold.
If in the future you want to remove the bold for that field on all pages of the site, changing the formatting of all pages is very difficult, unlike changing the CSS...
Hi @geoma
If I've understood you correctly:
Go to /admin/structure/types/manage/institutions/display/default
For the "County" field, select the Label to "...
Posted14 hours 38 min ago by Martin Price | System Horizons Ltd (yorkshirepudding) on:
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...