-
AuthorSearch Results
-
October 15, 2018 at 7:48 am #156798
In reply to: Header Media not working on mobile
hoiung
Participantskandha: for clarity, I’m referring to the Media Heading “randomise uploaded heads” and not the theme options “Featured Sliders”! Though having the option for both would be super useful 🙂
October 15, 2018 at 1:29 am #156771In reply to: Header Media not working on mobile
Skandha
Participant@hoiung: Thank you for the suggestion. I will forward this to our development team. Yes, you can activate slider for mobiles and header video for desktops. Activate featured slider on your site and I will provide you the CSS Code to make this possible.
Kind Regards,
SkandhaOctober 15, 2018 at 12:55 am #156764Skandha
Participant@sugran: To make slider text show up on other pages
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.body:not(.home) .slider-content-wrapper .entry-container, .home .custom-header-content { position:fixed; top:140px; } body:not(.home) .section-content-wrap .entry-container-wrap .entry-summary { margin:0; font-size:18px; } body:not(.home) .section-content-wrap .entry-container-wrap .entry-title { font-size:28px; }To change the order in which the slider images are displayed.
Go to => Appearance => Customize => Theme Options => Featured Slider => In Post #1 select the page you want to display as the first slide then in Post #2 the post you want to display after first slide and so on.Let me know if this helps you out!
Kind Regards,
SkandhaOctober 13, 2018 at 12:27 pm #156685In reply to: featured post slider
admitcard
ParticipantHello Greetings
I was Googling about this problem Luckily i found this URL and this Comment would help me to resolve my problem i want to add Featured slider Images to my WordPress blog i had a WordPress blog ur: Admit Card where i post about educational stuff i want to Make my blog Elegant
Please @Skandha Can you suggest any Custom code to add Homepage slider or Post page slider
I’m requesting catch themes Community to reply on this comment to help me out
Regards
Admit cardsOctober 11, 2018 at 2:37 am #156491Skandha
Participant2) To disable the Featured Image link in Featured Content
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..featured-content-thumbnail.post-thumbnail { pointer-events:none; }3) You have enabled Logo Slider as post type but you have not selected any posts to show as logo slider. Please select some posts. Its better if you use Image Type as Logo Slider to show your logos.
4)For that
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..entry-title { hyphens:none !important; }5) To learn CSS Codings I recommend you W3Schools.
Let me know if this helps you out!
Kind Regards,
SkandhaOctober 8, 2018 at 10:04 am #156172In reply to: Replace Featured Slider?
localgeek
Participant@sapana Yes, that disables the built-in Featured Slider. I’m now able to add my own to my Home Page. However, it appears below the Featured content. Is there a way to place it at the top of the page, before all of the other content? Thanks.
October 8, 2018 at 3:28 am #156148In reply to: Featured Slider is NOT showing up
tikaram
Participant@richardmin : Please go through the theme instruction at https://catchthemes.com/themes/clean-fotografie-pro/#theme-instructions and locate featured slider. Follow the instructions and you will be able to get your desired sliders. Let me know if you have any more issues.
Regards,
TikaramOctober 8, 2018 at 1:16 am #156140In reply to: Replace Featured Slider?
sapana
Participant@localgeek: You can disable the Featured slider. Go to Dashboard=> Appearance=> Customize=> Featured Slider=> Enable Slider On and select Disabled. And the you can you can use your desired Slider. The theme may or may not be compatible with the Slider you use. If you face the issue then customization may be required. If so, I recommend you to hire a customizer.
Kind Regards
SapnaOctober 5, 2018 at 5:15 am #155860Skandha
Participant@orthosoc:
1. Little bit of the image will get cropped off in order to fit to the screen size perfectly. I don’t think you can do much for that.2. You don’t seem to have enabled Featured Content on your site. Are you talking about the latest news section?
3. I don’t see a Logo slider on your site. Isn’t this your site URL: https://ybo.ewq.mybluehost.me?
Let me know if this helps you out!
Kind Regards,
SkandhaOctober 5, 2018 at 12:41 am #155833orthosoc
Participant@Skandha – great news! I contacted my site host and they were able to easily clear the cache, which fixed the refresh problem instantly! Very exciting!
1) Oh, good, I definitely created all 12 header images using a 1920*954px template, so I don’t know why they sometimes get cut off – top, bottom, left, and right; it’s very random and only occasionally. Here’s a picture of the cockroach image from my template:
https://1drv.ms/u/s!AlV_P2U9b7-9go5spkcyRT2ZeSwjQg
You can go to the homepage (https://ybo.ewq.mybluehost.me) and refresh until you get the same image to compare it to. Currently, on my PC screen on Chrome/IE, the image is shorter at the top compared to the template version. Also, I just checked the mobile version on my Samsung phone and the site title banner is partially hidden under the menu banner for some reason. Very strange. It’s almost as if the coding for this section of the site is somehow unstable.
2) Unfortunately, this code didn’t work, and I even tried some variations to experiment. The image still links me to the post I would like to keep hidden.
3) Same with this code, although it DOES do something – it hides the Logo Slider that I placed between Featured Content and News, and I definitely want to keep it. I also tried variations on this code, but no luck.
4) Same with this code, but I think I don’t need it after all. I added a button to Featured Content that fills the extra white space nicely.
Thank you as always! Also, can you recommend a good site to learn CSS used for this site? I can “read” your codes and understand what they are doing, but I don’t understand how to know what key words to use in the code and it’d be interesting to learn.
October 1, 2018 at 4:28 am #155359In reply to: Theme questions
Skandha
Participant@passiveincomeguys:
1. To remove masthead from individual pages.
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.body:not(.home) .custom-header { display:none; } body:not(.home) #site-header-main { background-color:#000; } body:not(.home) .breadcrumb-area.custom { margin-top:90px; }2. To slow down the testimonial slider you will need to create a child and do a bit of customization. Let me know if you are familiar with child theme customization other wise I suggest you to hire a customizer.
3. To make button to other page.
Go to => Appearance => Customize => Additional CSS and Replace
#featured-content-section{pointer-events:none}
BY the following code.#featured-content-section article { pointer-events:none; }4. To remove the Blog feed from the homepage
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..home #content { display:none; }5. To remove the Menu button on mobile
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..menu-toggle-wrapper { display:none; }Let me know if this helps you out!
Kind Regards,
SkandhaSeptember 26, 2018 at 6:21 am #154981In reply to: Button Hover Text Color
gestaltakademin
ParticipantHi and Thanks!
It didn’t help but I think that’s because it’s not the backgroud hover color I’m trying to change but the hover text. It needs to go white when the background color changes to green. I have the Clean Education Pro and the settings are the same when it comes to color in the Hero site and in the Featured Slider site but the effect on the site is not…
Can I chand background to text in the Css and get the effect?Kind regards,
MonicaSeptember 26, 2018 at 12:41 am #154947sapana
Participant@rgraham:-To disable the featured Slider on home page
Go to=> Dashboard=> Appearance=> Customize=> Theme Options=> Featured Slider=> Enable On=>Select Disable/Entire Site/Homepage
-To Change Headline/Image and Button
Go to=> Featured Slider=> Select Slider Type=> Image=> Insert Image ,Tagline, Title, Content and Link for the Button.
Let me know if this helps you out!
Kind Regards
SapanaSeptember 19, 2018 at 7:04 am #154362In reply to: Slider Catch Base Pro
Mahesh
Participant@purdey-and-peel: If you haven’t updated the theme, I strongly recommend you to update the theme first.
Go to Dashboard=> Appearance=> Customize=> Featured Slider and choose the Slider type. If you are using Post Slider/ Page Slider/ Category slider, then you’ll need to edit the post/page that you are using in slider and change the Featured image and update it. Or if you are using Image slider, you can directly upload new image in the customizer option itself.Let me know if you are having any further issue.
Regards,
MaheshAugust 30, 2018 at 12:25 am #152751In reply to: Slider Size
sapana
Participant@mleavey24:Please,use this recommended size for Image Slider( Width: 1920px ,Height: 1280px) or check in this link for further information.
Kind Regards,
SapanaAugust 9, 2018 at 12:40 am #151250In reply to: Theme Editing – Constantly Returning to Default
Skandha
Participant@bpgroup: Some bugs have been fixed in our latest 1.1.2 theme update and we are continuously updating the theme for bug fixes.
I checked the featured slider and it seems to be working fine. Let me know what issue you are having with the featured slider.
Please post in your site URL and post in all of your issues. I will be more than happy to help.
Kind Regards,
SkandhaAugust 9, 2018 at 12:27 am #151249In reply to: Site colours
Skandha
Participant@rhiannacarter: The theme has been updated to 1.1.2. Sometimes you do not get notification of the theme update.
To update pro theme you’ll need to first download the theme from https://catchthemes.com/my-account/page. Then install Catch Web Tools plugin and activate Catch Updater Module. https://wordpress.org/plugins/catch-web-tools/
Please check the tutorial video in the link below:
https://www.youtube.com/watch?v=W95SuabDZi8To edit featured slider on homepage
Go to => Appearance => Customize => Theme Options => Featured Slider => Now you can edit the slider.
For more information you can check out the theme instructions.Let me know if this helps you out!
Kind Regards,
SkandhaAugust 8, 2018 at 6:20 pm #151244In reply to: Site colours
rhiannacarter
ParticipantCan you please also let me know where I can edit the featured slider on the home page?
August 7, 2018 at 2:09 am #151139Skandha
Participant@cuddapah: Please change the value of z-index from 100 to 101 in the previous CSS Code. I think this will solve your issue number 1 and 2.
The CSS is in effect only for the homepage because you have activated featured slider only on the homepage.Let me know if this helps you out!
Kind Regards,
SkandhaAugust 6, 2018 at 11:52 pm #151132cuddapah
ParticipantHere is the link : http://104.254.244.180
As you can see, menu is hanging above featured slider. I am trying to make it look like this https://catchthemes.com/themes/adonis/ where menu overlays on the image. I am using images for slider because we want to show different images on this page. -
AuthorSearch Results
