Page Adornments are images that are tagged on to pages without affecting its functionality to make the look nicer or unique.
The technique is easy when you know the CSS to add.
Depending on the extension you want these effect to appear on you might need to change the element that you have them attached to. Also do not forget the order of the elements so they look correct. i.e. the Barber's Line needs to appear before the paint can as the paint is falling on the line etc..
Barber Line
This can be any image you want running alone the bottom of your page to make it look nice. You can make it global or specific to a page by making a specific class.
/* Barber Line at the bottom of articles */ #jsn-mainbody-content{ background: url(../images/custom/article-footer.jpg) repeat-x bottom; padding-bottom: 10px !important; }
Page Icons
These look great in conjuction with the Barber Line effect. The icons do not need to go in the bottom right corner.
These are set as classes so you can use them on multiple pages easily. all you have to do is add the appropriate .page-footer-branding-pack-1 to the page class suffix.
/* Page Icons */ #jsn-mainbody{padding-bottom: 150px !important;} .page-footer-branding-pack-1 #jsn-mainbody {background: url(../images/custom/pages/branding-pack-1.png) no-repeat bottom right;} .page-footer-branding-pack-2 #jsn-mainbody {background: url(../images/custom/pages/branding-pack-2.png) no-repeat bottom right;} .page-footer-desk-clip #jsn-mainbody {background: url(../images/custom/pages/desk-clip.png) no-repeat bottom right;} .page-footer-easel #jsn-mainbody {background: url(../images/custom/pages/easel.png) no-repeat bottom right;} .page-footer-paint-can #jsn-mainbody {background: url(../images/custom/pages/paint-can.png) no-repeat bottom right;} .page-footer-search #jsn-mainbody {background: url(../images/custom/pages/search.png) no-repeat bottom right;} .page-footer-services #jsn-mainbody {background: url(../images/custom/pages/services.png) no-repeat bottom right;}