Is it possible to shade or change the background colour of a fragment page? Reason I ask is that my home page tends to be made up of several fragments and in order to break what could be seen as a boring list, I was hoping to be able to isolate each one with a lined border and / or change the background colour of each one.
Announcement
Collapse
No announcement yet.
Fragment background colour
Collapse
X
-
There are several solutions - the "simplest" is to duplicate the existing fragment in the Library and rename as "Coloured Fragment" .... in the HTML add a <div class="fragCOLOUR"> ...</div> around all the existing code and in the actinic stylesheet add something like
.fragCOLOUR {
background-color: red;
}
You can then use this layout for your fragments as needed.
Comment