jccantele49
Forum Replies Created
-
Thanks Electric Feet.
Forum: Themes and Templates
In reply to: [Customizr] Slider breaks on high resolutionHmmm, yeah I’m seeing that on 1366 x 768. On 1920 x 1080 is looks perfect. It’s just at specific resolutions that the arrows get misplaced.
Anyone have a fix?
Forum: Themes and Templates
In reply to: [Customizr] Can you resize various sliders?I’ve posted a resolution to this here:
http://wordpress.org/support/topic/slider-breaks-on-high-resolution?replies=2
I’ve developed a solution for this:
Edit /wp-content/themes/customizr/inc/tc_voila_slider.php
Go to line 141 and change this code from:
<?php echo wp_get_attachment_image( $id, $img_size, array('class' => 'slide', 'alt' => $alt ) ); ?>to
<a href="<?php echo get_permalink($button_link); ?>"><?php echo wp_get_attachment_image( $id, $img_size, array('class' => 'slide', 'alt' => $alt ) ); ?></a>Now edit /wp-content/themes/customizr/inc/css/YOURCSS.css
And change:
.btn { display: inline-block;to
.btn { /*display: inline-block;*/BAM! You’re done! 😀 😀 😀
Forum: Themes and Templates
In reply to: [Customizr] Slider breaks on high resolutionI was able to resolve this by changing:
.carousel .item { line-height: 100px; overflow: hidden; min-height: 500px; max-height: 100px; }to
.carousel .item { line-height: 100px; overflow: hidden; min-height: 800px; max-height: 100px; }Forum: Themes and Templates
In reply to: [Customizr] Can you resize various sliders?Hi Malky, I’m looking for this answer as well.
I would also like to do this.
Forum: Themes and Templates
In reply to: [Customizr] Slider CustomizationNikeo, did you see joshuarocks question? The template seems to have a more serious issue with high resolution monitors. On my monitor @ 1920 x 1080, a 500 pixel tall image will be automatically cropped on a full screen browser. Changing the CSS height value from 500 to 800 creates problems on lower resolution screens. Could you provide a fix, or some direction on how to fix?
Also, I was wondering if there is a simple way to make the slider backgrounds themselves linkable, rather than a button inserted by the theme.