Page 1 of 1

Product selection button formatting

Posted: 26 Feb 2019, 16:02
by Andrushka
I am trying to change the formatting of the product selection buttons ( AppContentProductFormAcquireButton0 etc.).

It appears the buttons are members of the class ProductLine. However if I try to change the formatting of either the class or the individual button id I cannot modify the background colour.

For example if I add the following CSS:

.ProductLine {
background-color: #ff005b;
color: black;
}

Text colour changes to black as expected but the background colour remains grey not pink.

Any ideas?

Re: Product selection button formatting

Posted: 27 Feb 2019, 09:22
by HSNMSupport
Hi Andrushka,

please, first be sure to have set your CSS code in the custom CSS of the Login App section of your template.

Then, just add the !important to your CSS, as shown below:

.ProductLine {
background-color: #ff005b !important;
color: black;
}

hope I have helped you.

Best Regards.

Re: Product selection button formatting

Posted: 05 Mar 2019, 11:03
by Andrushka
Thanks - that fixed problem.