Page 1 of 1
Change header color/picture (Flatpress 1.3.1)
Posted: Wed Nov 20, 2024 12:35 pm
by Lubomír Ludvík
After changing, you must open in "new anonymous window" due to the browser cache!
in the file fp-interface\themes\leggero\leggero-v2\res\common.css
line 169 replace: background: rgba(184,60,50,0.7);
a) background: rgba(184,60,50,0.7);
b) no background
c) background-image:url(../imgs/back.jpg);
d) background-image:url(../imgs/header1300.jpg);

- preview.jpg (64.52 KiB) Viewed 54759 times
Re: Change header color/picture (Flatpress 1.3.1)
Posted: Thu Nov 21, 2024 10:24 am
by Lubomír Ludvík
You can also hide the title by setting:
font-size: 0% in common.css
Code: Select all
#head a { font-size: 0%; color: white; text-decoration: none }
Re: Change header color/picture (Flatpress 1.3.1)
Posted: Fri Nov 29, 2024 4:43 am
by montore
Hello,
Can I use a gradient background instead of a solid color or image? If yes, what would the CSS code look like?
Regards,
Montore.
Re: Change header color/picture (Flatpress 1.3.1)
Posted: Fri Dec 13, 2024 4:08 pm
by Lubomír Ludvík
in the file fp-interface\themes\leggero\leggero-v2\res\common.css
line 169 replace: background: rgba(184,60,50,0.7);
background-image: linear-gradient(red, yellow);
background-image: linear-gradient(to right, red , yellow);
background-image: linear-gradient(to right, rgba(255,0,0,1), rgba(255,0,0,0));

- gradient.png (70.02 KiB) Viewed 54495 times