• Resolved tanay11

    (@tanay11)


    I created whole table but I didn’t want the option of “even row bg color”, so I set it according to my theme background and updated. The update was applied for desktop mode but it didn’t make any changes for the mobile view. It still shows like previous time on the mobile. How am I supposed to fix that?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Tauhidpro

    (@tauhidpro)

    You can choose ‘Even number row bg color’ here https://prnt.sc/tofblt. It works only desktop If you need to add ‘Even number row bg color’ in mobile you need to write custom CSS code.

    • This reply was modified 4 years, 7 months ago by Tauhidpro.
    Thread Starter tanay11

    (@tanay11)

    Will you please provide me the custom code?

    Plugin Author Tauhidpro

    (@tauhidpro)

    Add CSS code to your site.??GO to Wp Dashboard????Appearance
    ?? Customize??? Additional CSS???Add below CSS code

    @media only screen and (max-width: 767px){
    table[id*="nichetablewpwp"] tbody tr:nth-child(even) {
        background: #999999 !important;
    }
    }

    #999999 is your even row color.

    Thread Starter tanay11

    (@tanay11)

    It worked. Thank you so much.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘In mobile view, the even row bg color doesn’t imply.’ is closed to new replies.