Closed (fixed)
Project:
FontFolio
Version:
7.x-2.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
27 Jul 2012 at 00:18 UTC
Updated:
27 Jul 2012 at 17:15 UTC
hello,
first of all congratulations for developing a great theme and giving it to the community.
now my question:
how would i add an background image to the /node (index) page to show across the whole page width?
where should i upload the image and what do i need to enter into CSS?
i look forward to your support.
thank you upfront!
Comments
Comment #1
israelshmueli commentedHi,
FontFolio do not include mechanism for uploading background images.
You always upload by hand and create new CSS rule to add background-image property to the body tag.
If you want to limit the style only to front page you can attach the existing "front" body class to your style rule.
No space between "body" and ".front" :
body.front {
background-image: url("your-frontpage-bg.png");
}
Comment #2
orces commentedworks -thank you very much!