bhmediamarty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Woocommerce Wootique Thumbnail resizing problemsWell that’s solved that problem for me.
I had changed everything I could think of to 200 pixel wide as I had kept the sidebar but extended the main width to 690 resulting in 200 pixel wide images that were slightly fuzzy, viewing the image that was displayed it was still using the 150×150 image despite having regenerated the thumbnails. Thankfully, changing the settings in step 3 of your instructions then Regenerating the thumbnails cured the problem.
Thanks for the help.
Forum: Plugins
In reply to: [WooCommerce] Change price tag imageI posted an answer to this in another thread.
Forum: Plugins
In reply to: changing default price ribbon image in woocommerceFurther to the above, if you change all the colours in ul.products li .price:before and ul.products li .price:after to transparent and then reposition the .price:after so that it’s vertically in line with the .price element then you can add width to the two elements and add background: url(yourimage); to the before and after to create rounded or other graphical ends to the price box. (there is CSS that can do rounded corners but for quickness I just went with explaining how to add an image).
Again, hope that helps.
Forum: Plugins
In reply to: changing default price ribbon image in woocommerceThe ribbon is comprised of a number of CSS elements including a CSS triangle trick using borders.
In the main style.css file there’s a set of elements under
ul.products li .price (approx line 323 in the stylesheet) which you can adjust to change the appearance and position of the ribbon.In the custom.css add the following to adjust the ribbon colour and position.
ul.products li .price {
top:10px; /* adjust to move ribbon up or down */
right:-6px; /* how far it sticks out the side */
/* can be changed to left */
background: #d23d46; /* change ribbon colour */
}
ul.products li .price:before {
border-color:#d23d46 #d23d46 #d23d46 transparent;
/* change the #d23d46 to same value as the style above to change ribbon ends or set all to transparent to remove */
}
ul.products li .price:after {
border-color: #892026 transparent transparent transparent;
/* change the #892026 to a darker value to the one you set in the above or set to transparent to remove the little tuck under the ribbon */
}Hope that helps.
Forum: Fixing WordPress
In reply to: Picture Gallery problemI know it’s been some time since you enquired about this, and I’m not sure if you found a solution but while searching for one and coming across this post, once I’d figured it out I thought I’d add the work around I came up with.
If you upload the static images you want into either a draft or private post then preview it to get the image locations by right clicking on the image in the preview page and selecting View Image. Then in the post you want both static and rolling images, add the images you want to appear in the slide show as you would normally so that they populate the gallery and then add the static images using the Insert from URL option and inserting the URL locations you got from the View Images from the previous post. That way the images will appear in the post but won’t be included in the images added to that page’s gallery.
Would be handy if you could just tick which images you want to include from the gallery but I’m sure (if it hasn’t been done already) it will be done at some point.
Hope that helps.