Home Forums Support Widget Support EasyBlog Share Button Custom Position Reply To: Share Button Custom Position

responsive-muse
Keymaster
Post count: 287
#39943 |

Hi Omair.

– If you mean vertical distribution of the icons floating on the left side on the page, that is not possible, you would probably need to write a lot of custom CSS to make it work.

As a small example, you can try this custom CSS snippet to change the floating buttons from left to right. You can paste custom CSS by putting it in the head by going to the Metadata tab of Page Properties (Page -> Page Properties).

<style>
.result #share {
    float: right!important;
}
</style>

– About the categories, you must create a separated Muse page for each category. So you will have 3 Muse pages (one per category) that you can link as you want.

– About the recent posts, I’m afraid that is a WordPress functionality (our shop runs in Woocommerce).

– About the search, since the posts are dynamically loaded from a CSV file, you cannot search them using third party Muse search solutions like our real search widget. Your best bet would be using Google Search, you can find more info at https://developers.google.com/custom-search/docs/start Notice that your posts need to be indexed by Google to appear in the Google Search bar results.

I hope it helps!