Page 1 of 1

Footer format

Posted: 09 Mar 2016, 16:29
by vboa68
Hi Karl

again me... maybe there is already another post... but i wasn't able to find..

I'd like to format the footer...
1. same color of gallery --> black
2. less high --> i need only to let visible my copyright.

How can I do?

thx
Vincenzo

Re: Footer format

Posted: 10 Mar 2016, 00:29
by mjau-mjau
Keep in mind, X3 uses "responsive" CSS to add styles that apply differently on desktop vs mobile devices. If you overwrite these styles, you may loose device-screen-size related styles, which is not critical. You also need to use the !important attribute to overwrite specific class styles. You can add custom styles in settings->custom->customCSS.
vboa68 wrote:1. same color of gallery --> black
Code
.footer {
 background: black !important;
}
vboa68 wrote:2. less high --> i need only to let visible my copyright.
Code
.footer {
 padding: 1em 0 1em;
}
* Try to adjust the values from 1em top/bottom padding.

Warning! Many users want to re-style and re-design their own X3. What some forget, is that native X3 styles are well planned in coordination with related items (texts inside, buttons etc), across multiple screen sizes. You may change something, and discover later that something related doesn't match because of the change ... Just a friendly warning!

Re: Footer format

Posted: 10 Mar 2016, 02:53
by vboa68
Hi Karl

thx a lot for your friendly suggestion!!
Then I will leave the format as it is, and I will only change the background color...

Vincenzo