Phil Ewels
Forum Replies Created
-
If I’m honest, I’ve never tried to use the carousel without an image so I don’t know. I know that the carousel dynamically resizes according the the image dimensions, so at the very least you’ll need to specify fixed heights and widths for the layers that usually contain the images. This is all guesswork though.
Phil
Hi Tim,
The easiest way will simply to make images that are a background colour.. If you want a cleaner way to do it, you can probably achieve the same effect using CSS.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Full width imageHi Darren,
I’m a bit confused about your question. The plugin just outputs the HTML for the carousel, so if you can make a full width carousel yourself manually, the same CSS should make the HTML from the plugin go full width. Does this make sense?
Let me know if I’m missing your question here.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] caption in one slide onlyFab, thanks for letting me know. If you fancy writing a review for the plugin that would be much appreciated.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] caption in one slide onlyAh ok, yes I’ve come across this before – I’ve just updated the code in the github repository, you can download the updated plugin here: https://github.com/tallphil/cpt-bootstrap-carousel/archive/master.zip
This change will go out with the other updates when I get around to pushing a new version to wordpress.org. Please let me know if it does the job (or breaks everything!).
Cheers,
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] caption in one slide onlyHi dock00,
It should be – you can just leave the editing text box empty in the slides that you don’t want to have a caption. Let me know if this doesn’t do the job for you.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Distortion on 1st generation iPadHi lbj56,
I’m afraid that this is a bit beyond the scope of the plugin, which really just provides the bootstrap html markup. Your link looks fine to me, I can’t see anything obvious which would be causing the problem. I recommend asking on somewhere like stack overflow which has a large readership to see if anyone else has come across this problem before..
Sorry I can’t be more help on this.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] IE8 SupportHi gcwebbyuk,
There’s a section about internet explorer 8 compatibility on the bootstrap documentation, have you done all of the things listed there?
Specifically, I’ve had weird problems in ie8 due to compatibility mode before. This is likely to be a trickier problem than your CSS override problem though 😉 Do you have a link demonstrating the behaviour again?
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel-Control taller than imageIt looks the offending like of CSS is on line 93 of your style.css:
img.wp-post-image {
margin-bottom: 20px;
}If you change this (or override it with .carousel img.wp-post-image ) that should fix your problem.
For reference, I tracked this down using the HTML / CSS inspector in Chrome. It showed a margin at the bottom that looked like it was causing the extra spacing so I traversed through the elements until I found something with no children that still had the margin. Then I found the line of CSS in the inspector that looked like it was causing the problem, unticked the checkbox to disable it temporarily and that fixed the problem.
Hope this helps! If you could drop a good review for the plugin that would be much appreciated.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel-Control taller than imageHi there,
Do you have a link for a page where you’re having the problem?
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Adding CSS to individual slidesApologies, that was sloppy coding by me. Should work now.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Adding CSS to individual slidesHi Sarah,
This is a good point, and it’s one that should be easy to fix – each image has a unique and persistent wordpress post ID.
I’ve just committed a change to the plugin which should echo this ID for each slide so that you can get at them using CSS. You can download this latest version of the plugin from GitHub: https://github.com/tallphil/cpt-bootstrap-carousel
This change is currently untested, so let me know if it does the job! It will be rolled into the next update on wordpress.org when I find time to get some other stuff done to the plugin.
Cheers,
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] CSS and/or JavaScript not loading properly?ps. I’ve added it to my to-do list to mention this in the FAQ for future reference. https://github.com/tallphil/cpt-bootstrap-carousel/issues?state=open
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] CSS and/or JavaScript not loading properly?Hah, glad that sorted it.. The only reason I knew to look for it was because I’ve had the same problem myself!
If you like the plugin a cheeky review would be much appreciated.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] CSS and/or JavaScript not loading properly?Hi Nick,
It could be something annoying like the fact that you’ve included the bootstrap Javascript file before the jQuery file. That would be the first thing I’d try..
Phil