Shape 5

Joomla Templates => Corpway - Club => : nat2856 August 06, 2014, 02:11:38 PM



: Image Content fader
: nat2856 August 06, 2014, 02:11:38 PM
How do I remove the white strip background under text on the image content fader?

I want text on some images but not all images.

Thank you


: Re: Image Content fader
: mikenicoll August 06, 2014, 04:01:27 PM
Hello,

If you add this to the custom.css file it will remove the background behind the text.

:
.jdGallery .slideInfoZone {
  background: none !important;}

That will make it so when there isn't any text input the user shouldn't see anything.

Regards,


: Re: Image Content fader
: illa August 07, 2014, 01:40:05 PM
How can i eliminate the box, and change the font color? Custom CSS?


: Re: Image Content fader
: mikenicoll August 07, 2014, 07:15:03 PM
Hello,

You can change the colors here:

:
Template.CSS - Line 893

.slideInfoZone {
    color: #272727 !important;
}

:
Template.CSS - Line 915

.jdGallery .slideInfoZone p {
    color: #272727 !important;
    font-size: 0.9em;
    margin: 0 !important;
    text-shadow: none !important;
}

To remove the box you can follow the instructions in the previous thread. You would add that coding to the custom.css file. The actual content in the box is controlled in the Module Manager.

Regards,