Foros de discusión

Custom theme doesn't apply background to whole page

Gregory Oxley, modificado hace 9 años.

Custom theme doesn't apply background to whole page

New Member Mensaje: 1 Fecha de incorporación: 12/05/14 Mensajes recientes
Hi,

Let me just state now that I'm rather new to both Liferay and Webpage design.
The guy who was originally working on this moved on to greener projects.

I'm trying to build my own theme on Liferay, with _styled as the parent.
Everything is going quite nicely, except for one thing.

My problem is that when I set the background color with the html identifier, nothing happens. And when I set the background color using the body identifier, the color stops where the content stops, which leaves a horrible white bar at the bottom of small pages.
How can I remove the white bar? Am I using the wrong CSS property? Should I override the html identifier somehow?

Thanks in advance.
thumbnail
Soukaina HAJI, modificado hace 9 años.

RE: Custom theme doesn't apply background to whole page

Regular Member Mensajes: 195 Fecha de incorporación: 17/06/14 Mensajes recientes
Modify these two :
.aui body{
background: %Color%;
}
#wrapper{
background: %Color%;
}



Regards,
Souka.
thumbnail
Manali Lalaji, modificado hace 9 años.

RE: Custom theme doesn't apply background to whole page

Expert Mensajes: 362 Fecha de incorporación: 9/03/10 Mensajes recientes
Gregory Oxley:
Hi,

Let me just state now that I'm rather new to both Liferay and Webpage design.
The guy who was originally working on this moved on to greener projects.

I'm trying to build my own theme on Liferay, with _styled as the parent.
Everything is going quite nicely, except for one thing.

My problem is that when I set the background color with the html identifier, nothing happens. And when I set the background color using the body identifier, the color stops where the content stops, which leaves a horrible white bar at the bottom of small pages.
How can I remove the white bar? Am I using the wrong CSS property? Should I override the html identifier somehow?

Thanks in advance.


Hi,

I think you need to give below property to get it work:

body {
 background: none repeat scroll 0 0 #FFFFFF;
}


Refer this thread for more information: link

HTH!