Home > OS >  Paypal button over on sticky
Paypal button over on sticky

Time:11-09

i have a problem with paypal button on my flatsome child wordpress theme. When scroling down Paypal button stay over the sticky. See link: https://agroparts24.com/en/produkt/3ply-dtxc-178mm-belt-round-balers-rhombic-structure-178-mm/

Thanks for advanced.

I tried to find a function in the theme to fix the problem, but no luck.

CodePudding user response:

increase z-index of header part.

Try adding this css.

header#header {
    z-index: 999;
}
  • Related