• Hello,

    I hope someone can help me. I really want to love the sell media plugin but i can’t quite get it to look the way i want it to on my site.

    When adding a gallery onto a page, each thumbnail image has a black margin vertical on the right which has the “buy” button. Can i change this margin to a horizontal transparent strip?

    Can i turn off the action to go into each image individually. I would like it to see the images as a grid with the option to bring the pop up buy it widget. I don’t want clients to be able to click and go to the large image page.

    I look forward to hearing from someone soon!

    https://www.ads-software.com/plugins/sell-media/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello, not sure if this would help you but it works well for me, I just used a custom CSS plugin, and entered this code in there..

    .item-inner {
    	max-width:310px;
      padding:5px;
      margin-left:auto;
        margin-right:auto;
    }

    gets rids of the black margin on the right. Ideally to be able to have a larger and responsive thumbnail depending on page size would be nice.

    Plugin Author Thad Allender

    (@endortrails)

    Thanks for sharing Sam. Sounds like a theme/plugin css conflict. Adding some css like you mentioned is the way to resolve any visual conflicts.

    I’m having the same problem. Could you tell me how and where to put the code to solve this. Which custom CSS plugin did you use. Sorry I’m still learning ??

    s-d-c

    (@s-d-c)

    dreamwed I don’t use a custom CSS plugin. I simply use the built-in “Appearance > Edit CSS” then I put all these modifications in there to get it to look the way I wanted…. I’m not using it at all for selling media, only as an image gallery. So the final result for me required a lot of tweaking…

    Hope this helps.

    /* hide hover overlay on grid pages */
    .sell-media .sell-media-grid:hover .item-overlay {
    	display: none;
    }
    
    .sell-media .sell-media-grid:hover .item-inner img {
    	opacity: 1;
    }
    
    /* hide buy and save button and other stuff on single item page */
    .sell-media-single-button {
    	display: none;
    }
    
    .sell-media-lightbox {
    	display: none;
    }
    
    li.filename {
    	display: none;
    }
    
    li.filetype {
    	display: none;
    }
    
    li.collections {
    	display: none;
    }
    
    li.keywords {
    	display: none;
    }
    
    /* hide search form items */
    #wpas-tax_keywords {
    	display: none !important;
    }
    
    #wpas-tax_collection {
    	display: none !important;
    }
    
    #wpas-meta_sell_media_price {
    	display: none !important;
    }
    
    /* fix Evolve theme menu going under search form */
    #post-2987 > div > div.sell-media-search.cf {
    	z-index: 0 !important;
    }
    
    /*fix image gallery black border*/
    #sell-media-archive > div > div > div > a > img {
    	padding: 0;
    }

    Plugin Author Thad Allender

    (@endortrails)

    Version 2.0 includes a new layout option on the Sell Media Settings page where you can choose between a one and two column layout. That might help you out.

    ok it seems from the update portrait thumbnails are not in proportion to each row, they use the 100% width but means that they stretch out too far below the row throwing it into a messy proportion.

    Is there a possibility to crop each thumbnail to keep everything uniform, or even use a set height for each row/thumbnails rather than a set width for each thumbnail.

    Thank you for your time

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Changing the Front End appearance’ is closed to new replies.