Okay
  Public Ticket #317234
nectar slider heading color
Closed

Comments

  • fabrizio started the conversation

    Hi!

    There is a way to use custom font colors in Nectar Slider Heading?

    Thanks

    F.

  • Dobrin replied

    Hey,

    I was just looking for the same and I found it here:

    http://themenectar.ticksy.com/ticket/256689/search/

    The following code in Custom CSS did the job

    body .swiper-slide .content h2 {
        color: #fff !important;
    }

    Cheers :)

    D.

  • fabrizio replied

    Hi Dobrin!

    Thanks so much!

    This is the solution I had thought. What I want to handle different colors, not just one.

    I thought with the "extra class" but I can not associate it with that specific heading.

    a greeting

    F

  •  8,842
    Tahir replied

    Hey!

    Try like this:

    body .swiper-slide:nth-child(1) .content h2 {
        color: #fff !important;
    }
    
    body .swiper-slide:nth-child(2) .content h2 {
        color: #fff !important;
    }

    Thanks 


    ThemeNectar Support Team