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

israelshmueli’s picture

Hi,
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");
}

orces’s picture

Status: Active » Closed (fixed)

works -thank you very much!