Phil Ewels
Forum Replies Created
-
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Error on CPT carouselGreat, glad you got it working 🙂
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Error on CPT carouselHi Hiram,
As described above, you need bootstrap.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Error on CPT carouselYeah – you can use imgur or any other image upload tools.
However, before you do that, look into bootstrap. It’s a framework for building websites, so it’s not just a case of including an extra plugin – it will drastically change the appearance of your website.
This plugin is designed for people already using bootstrap really. I would guess that you’re better off finding a different wordpress carousel plugin that doesn’t require this back end. There are quite a lot of others available.
Cheers,
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Error on CPT carouselHi Hiram,
It looks like you only have one image in the carousel? I’m a bit confused. Anyway, it looks like you’re not using bootstrap, so the carousel won’t work. See the plugin homepage for more details.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Change title background colourHi alphaaero,
You can change the colours by using some custom CSS. You can find the documentation for the carousel on the bootstrap website.
It looks like the unite theme colours the title bar with this code:
carousel-caption h4 { background: #54397e; background: rgba(84, 57, 126,0.7); }So you can write your own CSS somewhere (either edit the theme files, or get a plugin to do it) and overwrite these with your own colour.
Hope this helps!
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Title and excerpt on small screens (mobile)Hi Bryan,
As with the other post, I’m afraid that this isn’t something I’m looking to add in the near future. The custom CSS should be pretty simple, let me know if you need any help with it.
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Other transitions easily implemented?Hi Bryan,
This plugin was written to generate the markup code needed for the Bootstrap Carousel:
http://getbootstrap.com/javascript/#carouselI haven’t written the carousel myself, I just wanted to support it. As such, adding extra functionality to the carousel is out of scope (though a number of things have been added since it’s creation, mostly through other people contributing their code).
There are loads of other wordpress plugins which do run customised carousels with these kinds of functions though, plus you’ll find lots of other people who have customised the carousel outside of this plugin, and those customisations should all work (eg. here).
At some point I would like to work on a new version of the plugin with lots of new features such as this, but it’s not a priority so I can’t guess when / if I’ll get to it. Sorry!
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Images aren't centered.Hi ADring,
This is probably because your images are too small. If they’re smaller than the carousel, then they’ll end up on the left.
Cheers,
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Image boxHi there,
This is because your images are too small, so they’re narrower than the carousel. If you upload larger images then the gap should disappear.
The gradient is a lot less noticeable when overlaid over an image, but it is possible to hide it using CSS if you would like.
.carousel-control { background: transparent !important; }See the bootstrap docs for more information: http://getbootstrap.com/javascript/#carousel
Hope that helps!
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Resize with shortcode options? because 2 carousselsYup, this is because your images are different heights. See the last FAQ:
The carousel makes the content jump each time it changes
You need to make sure that each image is the same height. You can do this by setting anAspect ratioin theEdit Imagesection of the WordPress Media Library and cropping your images.Forum: Plugins
In reply to: [CPT Bootstrap Carousel] How to look exactly like the screenshot.Hi MuninMunin,
The screenshot shows the carousel using Bootstrap v2. To get it to look like this, you’ll need to use Bootstrap 2 in your theme, then select that option in the carousel settings.
However, this probably isn’t necessary – you can change the appearance of just about everything in the carousel using CSS.
It’s difficult to give any more specific advice than this without knowing what effect you’re trying to achieve. Feel free to post back with more details, though this isn’t specific to the plugin, so asking anywhere about customising the bootstrap carousel CSS is fine too (eg. http://stackoverflow.com/questions/tagged/twitter-bootstrap). You can also check out the bootstrap documentation: http://getbootstrap.com/javascript/#carousel
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Title and excerpt on small screens (mobile)Hi nav2u,
You should be able to do this with CSS media-queries. W3schools has a good tutorial on them here: http://www.w3schools.com/cssref/css3_pr_mediaquery.asp
This way, you can specify CSS rules that prevent the title and caption from being hidden (
display:inline-block;) and move them below the carousel (something along the lines ofmargin-bottom:-200px;).I hope this helps!
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Move caption locationHi Ikodiks,
The carousel will resize to fit the container that it is within. If it’s not already the whole width of the screen, then it must be held within another HTML element (probably in your wordpress theme).
To get around this, you’ll probably need to edit your theme. For an example of a full-width carousel, see the bootstrap docs: http://getbootstrap.com/examples/carousel/
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Resize with shortcode options? because 2 carousselsHi HopRaiseE,
The carousel will resize to fit whatever it is contained within. So, the best way to do this is to edit the surrounding page.
You can either do this by editing your theme HTML / CSS, or by going to the “code” view of the page / post and adding the following:
<div style="height:200px; width:100%;"> [image-carousel] </div>(obviously changing the height and width to your desired values).
I hope that helps!
Phil
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Link on slideHi Pauline,
I’m a little confused, as this plugin doesn’t use
[slider]or[slide]shortcodes – it uses a single[image-carousel]shortcode.Are you sure that you’re using the CPT Bootstrap Carousel plugin?
Cheers,
Phil