Search…

X3 Photo Gallery Support Forums

Search…
 
vboa68
Experienced
Topic Author
Posts: 31
Joined: 10 Jan 2012, 08:58

Footer format

09 Mar 2016, 16:29

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
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Footer format

10 Mar 2016, 00:29

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!
 
vboa68
Experienced
Topic Author
Posts: 31
Joined: 10 Jan 2012, 08:58

Re: Footer format

10 Mar 2016, 02:53

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