Tagged: Catch Flames, css, featured slider, slider
- This topic has 25 replies, 7 voices, and was last updated 7 years, 1 month ago by Mahesh.
-
AuthorPosts
-
February 27, 2016 at 9:50 pm #86406MyinahMember
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?
February 28, 2016 at 9:37 am #86431MaheshParticipantHi myinah,
Please add the following CSS:
#main-slider .featured-slider .slides .entry-container { display: none; }
Regards,
MaheshMarch 6, 2016 at 9:10 am #86874stefanrsharpeParticipantI 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?
March 8, 2016 at 10:26 am #87022MaheshParticipantApril 23, 2016 at 1:17 pm #90212ydParticipantHello.
I am using the Catch Base.
Adding the CSS, can I remove text too?
without upgrade?April 24, 2016 at 10:24 am #90264MaheshParticipant@yd: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#feature-slider .slides .entry-container { display: none; }
Regards,
MaheshFebruary 15, 2017 at 2:09 pm #109781candatParticipantI 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.
February 15, 2017 at 2:16 pm #109782candatParticipantI 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;
February 21, 2017 at 10:48 am #110365MaheshParticipant@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,
MaheshSeptember 19, 2017 at 1:21 pm #122504QRS-InternationalParticipantHi 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,
MichaelSeptember 20, 2017 at 2:28 am #122549MaheshParticipant@qrs-international: You are using Catch Base Pro. Add the following CSS:
#feature-slider .entry-container { display: none; }
Regards,
MaheshSeptember 23, 2017 at 1:20 pm #122935DicnethParticipantHi,
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?
September 24, 2017 at 11:46 pm #122995MaheshParticipant@dicneth: Could you please clarify more. Please post in your site url.
Regards,
MaheshSeptember 25, 2017 at 12:10 pm #123034DicnethParticipantHi 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.
September 25, 2017 at 11:49 pm #123056MaheshParticipant@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/2wPjQrfLet me know if any issue.
Regards,
MaheshSeptember 26, 2017 at 12:49 pm #123087DicnethParticipantThanks 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.
September 26, 2017 at 11:02 pm #123110DicnethParticipantUuuuppsss! 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!
September 29, 2017 at 7:25 am #123293MaheshParticipant@dicneth: Glad to know that everything’s working now. Have a nice day!
Regards,
MaheshOctober 2, 2017 at 11:30 am #123469QRS-InternationalParticipantHello 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,
MichaelOctober 3, 2017 at 12:12 am #123497MaheshParticipant@qrs-international: Please add the following CSS:
#feature-slider .entry-container:hover { background-color: rgba(0, 0, 0, 0.3); }
Regards,
Mahesh -
AuthorPosts
- The topic ‘Featured Slider – Remove text from images’ is closed to new replies.