paul724
Forum Replies Created
-
Hi David,
Thank you – at the last time of checking we have clients in 36 countries (including EU but not the UK). It sounds a lot but the numbers are small with direct relationships with each one. We are looking now at on-line sales without that direct relationship – hence the interest in your plugin and WooCommerce.
I think the new type of customers will be individuals (charged VAT under section 6) and organisations (do not charge VAT if they are validated)
Not quite sure yet how much of a mountain this is to climb and will be interested in your thoughts
Thank you
PaulHi David,
I think this is the UK government policy that we are thinking of:https://www.gov.uk/guidance/vat-place-of-supply-of-services-notice-741a#sec6
6.2 B2C supplies
“The general rule for B2C supplies of services is that the place of supply is where the supplier belongs, irrespective of the location of their customer.”
It is complicated but as we are based in the UK and supply services to individuals B2C (outside of UK) this what we thought applied.
Thank you
PaulThank you David,
Understood about the base country – no one exempt
Understood about EU organisations if they provide a valid EU Vat number
I think there is a third / fourth implication – please excuse me if I have missed this…
In addition we sell to individuals and organisations outside of UK & EU.
My understanding is that for organisations in RoW (rest of world) we would not charge VAT but for individuals anywhere in the world we must charge VAT
Look forward to your thoughts,
Thank you
Paul- This reply was modified 3 years, 1 month ago by paul724.
Forum: Themes and Templates
In reply to: Center image and wrap text around itHi Esmi – I am not sure I understand – my original post asked to “wrap text around a centered image”. I know what I have done doesn’t get all the way there but given the current constraints of CSS it is a workaround?
Are you saying there is a way to centre the image and float/style the surrounding text?
thanks for your thoughts,
PaulForum: Themes and Templates
In reply to: Center image and wrap text around itHi Robin, I followed your link and it looked very promising; and clearly W3 are working on regions and exclusions – but I couldn’t find any real life examples of these as yet working. Shame because the principle of being able to do in HTML that which the print industry has done for years will be great. Checking some of the suggested css properties (e.g. shape-outside) via CSS3 Validation always failed.
I am not a programmer so didn’t know whether “-webkit” might help?
I also had a quick look to see if jQuery might have solved this but didn’t find anything?Please if you do find some live implementations then do let me know.
Thank you,
Paul
Forum: Themes and Templates
In reply to: Center image and wrap text around itHi Esmi, At the risk of disagreeing with a forum moderator – I now have a working solution. My thanks to Robin for keeping me looking but mostly my thanks to Marco Del Corno who posted this last year.
And you can
see the results hereMy HTML is now like this:
<img class="imageC" src="http://www.theunicornproject.co.uk/images/lambmountain.jpg" height="100" width="150" alt="Lambs in sunshine halter" /> <div class="l"><strong>And</strong> of course there is the whole farm environment that contributes to the student's sense of well being ... And of course there is the whole farm environment that contributes to the student's sense of well being ... And of course there is the whole farm environment that contributes to the student's sense of well being ... </div> <div class="r">The lambs are also visited each year by local school and scout groups ... The lambs are also visited each year by local school and scout groups ... The lambs are also visited each year by local school and scout groups ... The lambs are also visited each year by local school and scout groups ... </div>and the necessary CSS is
.imageC { position: absolute; /*top: 0;*/ left: 50%; margin-left: -75px; } .l, .r { width: 49%; } .l { float: left; } .r { float: right; } .l:before, .r:before { content: ""; width: 75px; height: 100px; } .l:before { float: right; } .r:before { float: left; }I guess this is a bit of a workaround and it would be great to have it as a genuinely floating image with the ability to control the text floating on all sides – I will reply to Robin separately about the slow implementation in CSS3 of regions and templates.
Forum: Themes and Templates
In reply to: Center image and wrap text around itHi Robin, thank you – looks excellent in theory – will do some testing…