• Resolved gadrent

    (@gadrent)


    How can I change the color of the text under the image. The text block is now red and the hover text grey. The text must be visual all the time. I can’t find what’s wrong.

    I have changed some colors in the grid, style settings.
    Like Primary color, Button BCK color, Button Hover color, etc.
    No result.

    URL: https://uweigensecretariaat.nl/secretariaat-services/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author RadiusTheme

    (@techlabpro1)

    Hello,
    In your theme .entry-title class has this background color so it coming here.

    Write this css in custom css box

    .rt-tpg-container .layout1 .rt-holder .rt-detail h2 {
    background: #fff !important;
    }

    Thanks

    Thread Starter gadrent

    (@gadrent)

    Hi,

    Thanks for your quick response.

    I placed the css code in the style.css.
    But no result.

    I even changed #fff in something else.
    No result.

    Thanks.

    Plugin Author RadiusTheme

    (@techlabpro1)

    Hello,

    Your theme this CSS conflict
    .entry-title {
    font-size: 14px;
    font-size: 1.4rem;
    text-decoration: none;
    color: #FFF;
    background: #E95A5A;
    padding: 8px;
    margin-top: -8px;
    }

    To remove title background use

    .rt-tpg-container .layout1 .rt-holder .rt-detail h2.entry-title {
    background: #fff !important;
    }

    If you want the background and change text color then use

    .rt-tpg-container .layout1 .rt-holder .rt-detail h2.entry-title {
    color: #fff !important;
    }

    I checked with Firebug It work.

    Please add this css in custom CSS box of my plugin See settings option

    Make sure no cache then check hope it will work.

    Thanks

    Thread Starter gadrent

    (@gadrent)

    Hi,

    Again, thanks for your quick response.

    I placed the css code in your custom css box.
    And it worked.
    I had a happy client this morning.

    I tried to find out what caused this problem.
    But my client could not give me the right answer.

    Thanks.

    Plugin Author RadiusTheme

    (@techlabpro1)

    Hello,

    Nice !!

    I am closing this topic.

    Your theme this CSS conflict it has a background color

    .entry-title {
    background: #E95A5A;

    }

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to change Text color under Image’ is closed to new replies.