Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thanks! I’ll look in to it.

    @mongobread – What did you ever do to handle the large number of variations? I have a millions of variations and am thinking of buying the woocommerce product add-on extension that allows for drop-downs.

    P.S. = you can also delete the min-width: 100% in the .slides .slide-thumb img, so then it would be this >>

    .slides .slide-thumb img {
     		display: block;
        	        margin-left: auto;
       		margin-right: auto;
    		width: auto;
    		height: auto;
    	}

    I fixed it by messing with the code on my site –

    1st: in index.php on line 29 the code says this:
    <div class="slide-thumb"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'magazino' ), the_title_attribute( 'echo=0' ) ); ?>"……etc etc

    Toward the end of this line look for the section that says ‘position:absolute’ and delete that section of code so that your new line looks exactly like this >>

    <div class="slide-thumb"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'magazino' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_post_thumbnail( array(1000, 640), array( 'onload' => 'feat_img_onload(this)' ) ); ?></a></div>

    2nd: in style.css, change .slides .slide-thumb and .slides .slide-thumb img to this >>

    .slides .slide-thumb {
    		position: relative;
    	}
    
    	.slides .slide-thumb img {
     		display: block;
        	margin-left: auto;
       		margin-right: auto;
    		width: auto;
    	/*	min-width: 100%;*/
    		height: auto;
    	}

    I’m sure there are better ways to go about it, but this worked for me and I don’t care about updates. It’s an awesome theme, but the formatting of the featured image was, admittedly, a little funny!

Viewing 4 replies - 1 through 4 (of 4 total)