Phil Ewels
Forum Replies Created
-
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Mobile Resizing not workingClosing due to inactivity. Feel free to post and I’ll reopen it.
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Add text to CarouselHi Shaun,
You can do this when you add new images – the title text can be the headline and the “Excerpt” underneath is the subheadline. If you have “show caption” (or something similar, I forget the exact wording) in the settings.
Does this make sense? I can load up the plugin myself and provide more exact instructions if you’d like..
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Image resizing on mobileHi zeaks,
This depends slightly on whether you are using the background-image setting, but you should be able to clear the height in the settings and use CSS media queries to define the carousel height for different window sizes in your theme.
Let me know if you need any help with this..
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Some images disappearClosing this due to inactivity. Drop a reply if you’re still working on this.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Customize text and image elementsBrilliant, glad you got it working!
For clarity, if anyone else reads this – it looks like the above code is written in LESS / SASS or something, not vanilla CSS. So you can’t just copy and paste it straight into your
styles.cssfile.Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Mobile Resizing not workingHi melmulcahy32,
Have you tried using the different background image settings in the carousel?
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Customize text and image elementsHi Huriata,
You should be able to do this purely with custom CSS. The
<img>tag will affect the carousel height by default, but you can force a custom carousel height by targeting the surrounding<div>layers.Let me know if you need any further pointers with this..
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Disable CirclesAdded an issue: https://github.com/ewels/cpt-bootstrap-carousel/issues/56
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Disable CirclesHi Amy,
No problem! You can hide the navigation circles with the following CSS:
.carousel .carousel-indicators { display: none; }You can even hide them only on small screens only using media queries:
@media (max-width: 768px) { .carousel .carousel-indicators { display: none; } }It’s kind of strange that I have written in an option to hide captions and control buttons, but not the circles though. I’ll add that in as an option in a future update.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel Links Not Working in ChromeGreat, glad it’s sorted.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel Links Not Working in ChromeSo I think that z-indexes won’t work, due to the nesting of the elements (see this post).
You can budge the links right a bit easily enough though:
.carousel-caption .btn { margin-left: 300px; }To be honest, what I’d probably do myself is just get rid of the buttons at the side of the carousel. You can always have the little circles instead, or just nothing at all.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel Links Not Working in ChromeHi Amy_bubble,
I just tried this on Chrome for mac and the green “Click to view” buttons seem to be working fine for me. It’s not that the overlapping vertical grey carousel gradient bar is being clicked instead, causing the carousel to rotate to the previous image?
Try doing Right Click > Inspect Element and seeing whether chrome highlights
<a class="left carousel-control"..in the code or<a href="http://www.bubble-jobs.co.uk...If the button is falling behind the carousel scroller, you can use CSS to change the height so that they don’t overlap, or try playing with
z-indexscores to make them stack in the right order..Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Categories not workingHi @rigorousrich,
Thanks for this! Any ideas why the current code works in my testing environment then? I just had another look, it’s definitely still working for both shortcode attributes and settings page configuration. I’m using WordPress v4.2-alpha-31427..
Anyway, I’ve added it as an issue so that I remember to update to your code in a future release.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Some images disappearOoh, that is a weird problem. Do you have a link where I can see the site?
Feel free to cross-post on stack exchange or somewhere. I doubt that this is anything to do with the plugin code itself (though it’s possible), rather something else weird on the client side.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Categories not workingHi Andy,
The poster above managed to resolve the issue himself in the end:
Resolved. It was the loop that generated the menu that was an issue. It was forcing the slider to use the very last page title as a category.
Does that help at all? I’m not able to replicate the problem, so there’s a good chance that it could be something to do with other WordPress loops elsewhere in your theme.. If you’re able to replicate the problem in another setting (eg. the Unite theme), let me know.
Phil