Viewing 20 posts - 1 through 20 (of 26 total)
  • Author
    Posts
  • #86406
    Myinah
    Member

    I am using the Catch Flames theme, but I’m unable to get the slider to stop displaying text. I’ve looked at other topics and tried inserting the code below in the custom css in the theme options:

    .featured-text {
        display: none;
    }

    So far nothing has worked or removed the titles and text from the featured slider. Can someone help?

    #86431
    Mahesh
    Keymaster

    Hi myinah,

    Please add the following CSS:

    #main-slider .featured-slider .slides .entry-container {
        display: none;
    }

    Regards,
    Mahesh

    #86874
    stefanrsharpe
    Participant

    I am using the Simple Catch theme and want the text beneath the slider to appear in my slider picture. I have tried many CSS codes but none are working. Can somebody help me?

    #87022
    Mahesh
    Keymaster

    Hi @stefanrsharpe,

    Please post in your site url.

    Regards,
    Mahesh

    #90212
    yd
    Participant

    Hello.
    I am using the Catch Base.
    Adding the CSS, can I remove text too?
    without upgrade?

    #90264
    Mahesh
    Keymaster

    @yd: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .slides .entry-container {
        display: none;
    }

    Regards,
    Mahesh

    #109781
    candat
    Participant

    I tried adding the CSS code noted above via the wordpress control panel and it did not work. The text is still displayed over the slider images.

    This is the website.

    http://www.mattmurrayphotography.com/

    How to I have it setup so it does not display any text on the slider?

    Thanks.

    #109782
    candat
    Participant

    I figured it out. Just edit the style.css file for the theme. Search for the word “slider”. Change or add the line noted below to the parts that deal with the text part of the slider. (ie caption etc…)

    display: none;

    #110365
    Mahesh
    Keymaster

    @candat: Glad you’ve resolved it yourself. You can use the following CSS instead. Its the same though but modifying the theme’s files directly is not recommended as you’ll lose all the modifications as you update the theme. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #feature-slider .caption {
        display: none;
    }

    Regards,
    Mahesh

    #122504
    QRS-International
    Participant

    Hi Mahesh,

    i have the same problem, i do exact what you write in the correct way over additional css…

    #feature-slider .caption {
    display: none;
    }

    But it dosn`t work. I have the Catch theme Base pro, do you have a idea?

    The developement site ist: http://qrs-international.com/dev

    If the user go mouse over the text in the slider, it will be black. i must chance it. without text or changing backgrundcolor from the text.

    Thanks and Regards,
    Michael

    #122549
    Mahesh
    Keymaster

    @qrs-international: You are using Catch Base Pro. Add the following CSS:

    #feature-slider .entry-container {
        display: none;
    }

    Regards,
    Mahesh

    #122935
    Dicneth
    Participant

    Hi,

    An interesting fact. I had the same problem and I picked the right code in my case with Catch Evolution… and it didn’t work. I tried everything possible in my child theme (that is working fine up to now) and nothing happened. Then I had an idea, and introduced exactly the same code in the “Custom CSS” from the theme, and it worked immediately.

    A reason for it, a child theme not working for some code?

    #122995
    Mahesh
    Keymaster

    @dicneth: Could you please clarify more. Please post in your site url.

    Regards,
    Mahesh

    #123034
    Dicneth
    Participant

    Hi Mahesh,

    The website is still in local.

    If I insert this code in my child theme, the text and the black band on the slider never disappear:

    #slider .featured-text-wrap {
        display: none;
    }

    But if I insert exactly the same code to additional CSS form the customizer of the theme, the text and black band disappear directly.

    So I could solve the problem. But I was wondering why my child theme clearly didn’t work in this case, when it worked with other codes. And I suppose it can occur to other people eventually.

    #123056
    Mahesh
    Keymaster

    @dicneth: I’ve put the same code in the child theme and tested on our server and it worked fine. Here is the link to the child theme that I used.
    http://bit.ly/2wPjQrf

    Let me know if any issue.

    Regards,
    Mahesh

    #123087
    Dicneth
    Participant

    Thanks a lot for your interest and your help Mahesh! So it’s true you are very helpfull in Catch Themes :).

    To import stylesheet I changed my @import url to the add_action in functions.php that is clearly better practice. It doesn’t solve the issue, but now I know it surely comes from me.

    I’ll take time to look at it, also soon I’lI try in the remote server, not only in local. Any solution or new issue, I’ll tell you.

    Thanks a lot again!

    Best regards.

    #123110
    Dicneth
    Participant

    Uuuuppsss! I plead guilty. I found my mistake in other place of the code, and that made the mess. Everything ok now, the theme works 100% great!

    Thanks again for your help!

    #123293
    Mahesh
    Keymaster

    @dicneth: Glad to know that everything’s working now. Have a nice day!

    Regards,
    Mahesh

    #123469
    QRS-International
    Participant

    Hello Mahesh,

    a lot of thanks for your help before.

    sorry, but i need your help again. with your manual i can clear the text in the slider, it works. but without text is not realy a good solution. it will be better, the text will be display.

    but the problem is the mouseover effect. i have black text an i need mouseover effect with white (if possible with transperancy) color.

    how can i realize this?

    you can see the problem at the mainpage: http://www.qrs-international.com. if you move the mouse over the text in the slider the color change to black… the text is not readable anymore.

    regards,
    Michael

    #123497
    Mahesh
    Keymaster

    @qrs-international: Please add the following CSS:

    #feature-slider .entry-container:hover {
        background-color: rgba(0, 0, 0, 0.3);
    }

    Regards,
    Mahesh

Viewing 20 posts - 1 through 20 (of 26 total)
  • The topic ‘Featured Slider – Remove text from images’ is closed to new replies.