2 quick questions about the slider
- This topic has 7 replies, 4 voices, and was last updated 11 years, 4 months ago by
Scott Voth.
-
AuthorPosts
-
April 23, 2014 at 5:08 pm #4634
onziiParticipant1 – is it possible to disable the HOMEPAGE TOP RIGHT widget and then have the slider with the full width of the page?
2 – the menu option FEATURED SLIDER is not showing to me (between comments and buddy press invitation). Do I need to enable something to have that menu option showing up?
April 23, 2014 at 8:55 pm #4635Scott Voth
KeymasterHi @vivianny –
If you don’t put any widgets in the Homepage Top area, nothing should display or take up space. If you want the slider to take up the full area, I think you can just adjust the Slider width – Appearance>>CBOX Theme Options>>Homepage>>Slider Width – so that it covers that area. Just remember your slider images will need to be correspondingly large to avoid distortion.
If you are not seeing “Featured Slider” there is probably something wrong with your installation of the theme, I would think. Nothing is needed to have that menu option show up. Are you sure you followed up on all the steps to install the theme? Maybe try uninstalling/reinstalling to see if that helps?
April 24, 2014 at 8:04 am #4636Scott Voth
KeymasterHi @vivianny – One other thought – if you are running multi-site, and you are logged in with an ID that does not have full admin rights, the option to create “Featured Sliders” may be not available.
April 24, 2014 at 2:23 pm #4640
onziiParticipantThanks Scott, I’m not so worried about the Featured Sliders option as I’m using the Featured Post and it’s working fine… it’s just weird that the options is not showing for me. I’m login in with full admin rights.
The main concern is the width of the slider… I was playing with the width option and I noticed that it does not change anything if you go for a value more than 670 pixels but if I change the width to a value less than that default 670 px, the image width does change but the slider box will still have the same width (?!) Please see image attached.
Attachments:
You must be logged in to view attached files.April 25, 2014 at 9:10 am #4642Scott Voth
KeymasterHi @vivianny –
I see what you mean – I just tried it myself and got the same results. I also tried adjusting with CSS and didn’t have much luck with that either. I guess to accomplish this you would need to make a child theme and customized it to your design.
June 11, 2014 at 5:43 pm #4812Chris Jordan
ParticipantI _think_ I’ve figured this out. Adjusting the “Slider Width” setting just changes the width of the picture, not the width of the box the picture is in. _That_ width is in the themes/cbox-theme/templates/homepage-template.php file. In my case I wanted to make the slider slightly narrower, So I created a child theme and modified that, changing:
<div id="flex-slider-wrap-full" class="column ten">to:<div id="flex-slider-wrap-full" class="column nine">
but then the box to the right doesn’t get any bigger, so I had to also change:
<div id="homepage-sidebar-right" class="column <?php if ( $slider ) echo 'six'; else 'sixteen'; ?>">
to:
<div id="homepage-sidebar-right" class="column <?php if ( $slider ) echo 'seven'; else 'sixteen'; ?>">
Hope that helps someone.-
This reply was modified 11 years, 5 months ago by
Chris Jordan.
-
This reply was modified 11 years, 5 months ago by
Chris Jordan.
June 21, 2014 at 11:43 am #4849Sumit Agarwal
ParticipantHey there,
I have uploaded images to my slider but the image title and the caption is showing on the image which looks weird as image could not be seen properly..what editing has to be done so that the place where the image ends vertically, the image title and caption appears…Additionally I found a bug to that there’s no way to set the slider image change tym more than 10 seconds..If I attach a video to my slider and plays it, then to it slides the video…That’s really weird as someone watching the video gets to a image after 10 seconds…Please help
June 22, 2014 at 1:16 pm #4850Scott Voth
KeymasterHi Sumit @samm8158 –
Thanks for reporting the issue with videos and slider animation. I have opened up an issue on GitHub for the dev team to take a look. You can track progress here: https://github.com/cuny-academic-commons/cbox-theme/issues/207
Meanwhile, please note that the slider animation stops if you hover over the slide, and starts again when you move the cursor away from the slide. But you are right – this is a little disconcerting to a user who isn’t aware and is trying to watch the video in its entirety.
In terms of your first issue, it is always best to choose slider images with the knowledge that the bottom third will be mostly obscured with the overlay. So if your image has important content at the bottom, you might want to do some image editing. (I think it is always best to edit the image first to get the size right, and not depend on the built-in scaling.) When you do this, make sure the slide will look good when the overlay is in place.
You can also fiddle around with the overlay height with CSS and limit your caption content to just a title, for example:
.flex-caption {
height: 45px;
padding-bottom: 5px;
padding-top: 5px;
}-
This reply was modified 11 years, 4 months ago by
Scott Voth.
-
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.