Forum Replies Created
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
Thank you, this fixed my problem as well!
Note, the link above says the file to change is:
cbox-theme/blob/master/members/single/profile/edit.php
however in my installation it was:
cbox-theme/members/single/profile/edit.php
I _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.
Nevermind, I was clicking on the settings for the wrong menu bar after I applied @r-a-y’s fix to the child theme.
Hate to resurrect such an old thread, but since from the github issue above it doesn’t look like this is planned to be fixed, I wanted to put @r-a-y’s excellent fix to style.php into a child theme. Is it practical to do that? If I just put engine/ICE/dom/style.php into the child theme it appears to be ignored. Do I need to copy the whole engine directory into the child theme or something? The fix works fine when I apply it to the parent theme. Doubtless I need to learn more about how the infinity engine actually works and is customized…
Bowe,
I tried the download link you provided for the new slider on a development site, and it works well, solving several things I did not like about how slider worked previously. Thanks!