Search…

X3 Photo Gallery Support Forums

Search…
 
alderim
Experienced
Topic Author
Posts: 75
Joined: 27 Jun 2007, 05:49

menu picture frames background

17 Apr 2016, 07:14

Hi,

thx for that fantastic system!

questions:

- how can i modify/delete the grey frames around the images in the "Submenu"?

- how/where can i change the color (grey) background of the "Submenu"?

- where can i change the font-size of the submenu headlines?

Greets,
Al
Attachments
menu.png
menu.png (52.6 KiB) Viewed 2699 times
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: menu picture frames background

17 Apr 2016, 13:22

alderim wrote:- how can i modify/delete the grey frames around the images in the "Submenu"?

- how/where can i change the color (grey) background of the "Submenu"?

- where can i change the font-size of the submenu headlines?
This all has a single response: Custom CSS. We can't add settings for all these things in the panel, as that is what CSS is for. If you have some experience with CSS, you can use your browsers web inspector, locate the html elements, and create custom CSS classes to change CSS styles for any specific items. If this is not something you are familiar with, then it is normally out of scope for me to explain how to do these things unfortunately. However, here is a quick example by custom CSS, but you are warned: Start changing things, and suddenly you find colors dont add up with hovers, font colors, devices.
Code
.mega.carousel .image-container {
  outline: none !important;
}
.mega.carousel {
  background: tomato !important;
}
.mega.carousel h2 {
  font-size: 1em !important;
}
* We use the !important attribute, because we need to make sure these classes overwrite existing styles.
 
alderim
Experienced
Topic Author
Posts: 75
Joined: 27 Jun 2007, 05:49

Re: menu picture frames background

17 Apr 2016, 16:53

Thx for the quick answer!
i´ll try my CSS-Best :mrgreen: