I'm using the new app builder and in settings, Live App Design, Header & Menu , App header I can see background color (which i have set to blue - #1a2654) and in Page Menu I can see fill color (which have set to gold - #aa9367) but neither affects the background colour of the submit or search buttons.
Also in Look and Feel there's options for changing the link text color (it's labelled as "This will affect links, button text, and table headers")
But i cant see anything for the buttons - where can i change that background button colour as its currently white so it leaves the button as very hard to see.
Hi @GaryStark10384
Not sure if I have correctly understood the question, but to target a specific objects CSS attributes just put that selector in the css.
As an example, here is some of my CSS for the menu, and also where I target a specific views tabs.
Example;
I have made the font in the tabs on a particular view #view_367 smaller.
You could add other attributes like color, background-colour, etc
Just quickly looking at this, it looks like you possibly have multiple CSS declarations to the same element
i.e. somewhere else there is a background-color declaration for button background-color that is over-riding your green. Check that on the right.
Try this: Instead of “;” put !important;
that way, only the !important property value will be applied to the button and all other CSS declarations will be ignored (assuming you only have one important!, lol)
So: {background-colour: green !important;}
I try to be careful with !important, and only use it when you have no alternative… you can get into issues with lots of !important. For example if you use it on a generic declaration (not a specific element) , then you may still not get the result you need, as its the order that becomes important.
Let me know if it doesn’t fix the issue, and I will take a look at it in more detail.