{"id":639,"date":"2020-03-23T16:41:49","date_gmt":"2020-03-23T16:41:49","guid":{"rendered":"https:\/\/carolacworth.com\/V100\/?page_id=639"},"modified":"2020-08-10T20:16:23","modified_gmt":"2020-08-10T19:16:23","slug":"blog","status":"publish","type":"page","link":"https:\/\/carolacworth.com\/V100\/blog\/","title":{"rendered":"Blog"},"content":{"rendered":"<style type=\"text\/css\">\r\n<\/style>\r\n\r\n<h2 style=\"text-align: center\">My Blog<\/h2>\n\n<script>\r\n\r\nvar slideIndex = 1;\r\n\r\nfunction plusDivs(d,n) {\r\n\tshowDivs(d,slideIndex += n);\r\n}\r\n\r\nfunction showDivs(d,n) {\r\n\r\n\tvar i;\r\n\tvar x = document.getElementsByClassName(d);\r\n\t  \r\n\tif (n > x.length) {slideIndex = 1}\r\n\tif (n < 1) {slideIndex = x.length}\r\n\tfor (i = 0; i < x.length; i++) {\r\n\t\tx[i].style.display = \"none\";  \r\n\t}\r\n\t\r\n\tx[slideIndex-1].style.display = \"block\";  \r\n}\r\n\r\nfunction dbeconfirm(n) {\r\n\t\r\n\tvar msg='Do you really want to delete the blog entry';\r\n\tif(n>0) msg = msg + ' and ' + n + ' pictures';\r\n\tmsg =msg + '?';\r\n\treturn(confirm(msg));\r\n\t\r\n}\r\n\r\nfunction chkupload() {\r\n\t\r\n\tif(document.getElementById(\"frmimgfile\").value=='') {\r\n\t\talert('You cannot upload before a file has been selected.');\r\n\t\tdocument.getElementById(\"divnim\").style.display = \"none\"; \r\n\t\treturn(false);\r\n\t} else {\t\r\n\t\treturn(true);\r\n\t}\r\n\t\r\n}\r\n\r\nfunction chkblgtxt() {\r\n\t\r\n\tif(document.getElementById(\"frmblgtxt\").value=='') {\r\n\t\talert('Cannot save blog entry - there is no text.');\r\n\t\treturn(false);\r\n\t} else {\t\r\n\t\treturn(true);\r\n\t}\r\n\t\r\n}\r\n\r\n\r\n\r\nfunction imgupload(e) {\r\n\t\r\n\tdocument.getElementById(\"frmbtnid\").value = e.id;\r\n\tdocument.getElementById(\"frmblgid\").value = e.id.substr(6, 7);\r\n\tdocument.getElementById(\"frmimgid\").value = e.id.substr(13, 1); \r\n\tdocument.getElementById(\"divnim\").style.display = \"block\"; \r\n\r\n}\r\n\r\nfunction hideimgupload() {\r\n\t\r\n\tdocument.getElementById(\"frmimgid\").value = \"\"; \r\n\tdocument.getElementById(\"divnim\").style.display = \"none\"; \r\n\r\n}\r\n\r\nfunction imgicon(e) {\r\n\t\r\n\thideimgupload();\r\n\t\r\n\t\/\/ Perform the appropriate action for this icon (determined from icon id)\r\n\t\r\n\tvar action = e.id.substr(3,3);\r\n\tvar thumb = Number(e.id.substr(6,1));\r\n\tvar imglist = document.getElementById(\"frmimglst\").value.toString();\r\n\t\r\n\t\/\/ Move image left (earlier) or right (later)\r\n\t\r\n\tif (action=='mil' || action=='mir' ) {\r\n\t\t\r\n\t\t\/\/ Determine images to be switched\r\n\t\t\r\n\t\tif (action=='mil') {\r\n\t\t\tvar thumbto = thumb - 1;\r\n\t\t\tif (thumbto <0 ) thumbto = imglist.length - 1;\r\n\t\t}\r\n\t\r\n\t\tif (action=='mir') {\r\n\t\t\tvar thumbto = thumb + 1;\r\n\t\t\tif (thumbto >= imglist.length) thumbto = 0;\r\n\t\t}\r\n\t\t\r\n\t\t\/\/ Switch the thumbnails\r\n\t\t\r\n\t\tvar fromimg = document.getElementById(\"icnpic\"+thumb).src;\r\n\t\tvar toimg = document.getElementById(\"icnpic\"+thumbto).src;\r\n\t\tdocument.getElementById(\"icnpic\"+thumb).src = toimg;\r\n\t\tdocument.getElementById(\"icnpic\"+thumbto).src = fromimg;\r\n\t\t\r\n\t\t\/\/ Rebuiild the image list save in form\r\n\t\t\r\n\t\tvar newlist = '';\r\n\t\tfor (var i = 0; i < imglist.length; i++) {\r\n\t\t\t\r\n\t\t\tvar p = document.getElementById(\"icnpic\"+i).src.search('.png');\r\n\t\t\tif (p>=0) {\r\n\t\t\t\tnewlist += document.getElementById(\"icnpic\"+i).src.substr(p-1,1);\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\tdocument.getElementById(\"frmimglst\").value = newlist;\r\n\t\tdocument.getElementById(\"frmchanged\").value = 1;\r\n\t\t\r\n\t}\r\n\t\r\n\t\/\/ Delete image\r\n\r\n\tif (action=='dim' ) {\r\n\r\n\t\tvar msg='Do you really want to delete this picture?';\r\n\t\tif(!confirm(msg)) return; \r\n\t\t\r\n\t\t\/\/ Delete image by clearing img.src and removing suffix from image list\r\n\t\t\r\n\t\tdocument.getElementById(\"icnpic\"+thumb).src = '';\r\n\t\t\r\n\t\tvar newlist = '';\r\n\t\t\r\n\t\tif (thumb>0) newlist += imglist.substr(0,thumb);\r\n\t\tif (thumb<imglist.length-1) newlist += imglist.substr(thumb+1);\r\n\t\tdocument.getElementById(\"frmimglst\").value = newlist;\r\n\t\tdocument.getElementById(\"frmchanged\").value = 1;\r\n\t\t\r\n\t\t\/\/ Make associated action icons invisible\r\n\t\t\r\n\t\tdocument.getElementById(\"icnmil\"+thumb).style.visibility = 'hidden';\r\n\t\tdocument.getElementById(\"icndim\"+thumb).style.visibility = 'hidden';\r\n\t\tdocument.getElementById(\"icnmir\"+thumb).style.visibility = 'hidden';\r\n\t\t\r\n\t}\r\n \t\r\n\t\/\/ Rotate image\r\n\r\n\tif (action=='rot' ) {\r\n\r\n\t\tvar msg='Do you really want to rotate this picture?';\r\n\t\tif(!confirm(msg)) return; \r\n\t\t\r\n\t\t\/\/ Rotate the image by submitting form with ROTIMAGE cta\r\n\t\t\r\n\t\tdocument.getElementById(\"frmbtnid\").value = 'icnrot';\r\n\r\n\t\tvar n = document.getElementById(\"icnpic\"+thumb).src.search(\".png\");\t\t\t\t\t\/\/ Locate blogid part of image path\r\n\t\tdocument.getElementById(\"frmblgid\").value = document.getElementById(\"icnpic\"+thumb).src.substr(n-8, 7);\r\n\t\tdocument.getElementById(\"frmimgid\").value = document.getElementById(\"icnpic\"+thumb).src.substr(n-1, 1);\r\n\t\tdocument.getElementById(\"blgform\").submit();\r\n\t\t\r\n\t}\r\n}\r\n\r\nfunction blogchanged() {\r\n\t\r\n\tdocument.getElementById(\"frmchanged\").value = 1;\r\n\t\r\n}\r\n\r\nfunction dbconfirmcancel() {\r\n\t\r\n\tif (document.getElementById(\"frmchanged\").value==1) {\r\n\t\tvar msg='Do you really want to leave without saving the changes you made?';\r\n\t\treturn(confirm(msg));\r\n\t} else {\r\n\t\treturn(true);\r\n\t}\r\n\t\r\n}\r\n\r\n\t\r\n<\/script>\r\n\r\n<style type=\"text\/css\">\r\n\t\r\n\t.kwc_tbl_login {\r\n\t\twidth: 400px;\r\n\t\tpadding: 0px;\r\n\t\tborder-spacing: 0px;\r\n\t\tmargin-left:auto; \r\n\t\tmargin-right:auto;\r\n\t\tbackground-color: white;\r\n\t\tfont-family: Arial, Helvetica, sans-serif;\r\n\t\tfont-size:  medium;\r\n\t\tfont-weight: bold;\r\n\t\tborder: none;\r\n\t}\r\n\r\n\t.kwc_tbl_login_c1 {\r\n\t\twidth: 20%;\r\n\t\tborder: none;\r\n\t}\r\n\t\r\n\t.kwc_tbl_login_c2 {\r\n\t\twidth: 80%;\r\n\t\tborder: none;\r\n\t}\r\n\t\r\n\t.kwc_tbl_thumb {\r\n\t\ttable-layout: fixed;\r\n\t\talign: center !important;\r\n\t\twidth: 100%;\r\n\t\tpadding: 0px;\r\n\t\tborder-spacing: 0px;\r\n\t\tmargin-left:auto; \r\n\t\tmargin-right:auto;\r\n\t\tborder: none;\r\n\t}\r\n\r\n\t.kwc_tbl_thumb_row {\r\n\t\ttext-align: center;\r\n\t}\r\n\t\r\n\t.kwc_tbl_thumb_col {\r\n\t\twidth: 10%;\r\n\t\tborder: none;\r\n\t}\r\n\r\n\t.kwc_tbl_iconrow{\r\n\t\tdisplay: flex;\t\t\r\n\t}\r\n\t\r\n\t.kwc_tbl_iconcol{\r\n\t\tflex: 50%;\r\n\t\tpadding: 5px;\r\n\t}\r\n\t\r\n\t.kwc_icon {\r\n\t\twidth: 25px !important;\r\n\t\theight: 25px !important;\r\n\t}\r\n\t\r\n\t.kwc_btn {\r\n\t\tfont-family: Arial, Helvetica, sans-serif !important;\r\n\t\tfont-size:  small !important;\r\n\t\tfont-weight: bold !important;\r\n\t\tcolor: white !important;\r\n\t\tbackground-color: green !important;\r\n\t\tborder: 1px solid !important;\r\n\t\tborder-radius: 10px !important;\r\n\t}\r\n\t\r\n\t.kwc_tbl_editbtns{\r\n\t\ttable-layout: fixed;\r\n\t\talign: center !important;\r\n\t\twidth: 100%;\r\n\t\tpadding: 0px;\r\n\t\tborder-spacing: 0px;\r\n\t\tmargin-left:auto; \r\n\t\tmargin-right:auto;\r\n\t\tborder: none;\r\n\t}\r\n\r\n\t.kwc_tbl_editbtncol1{\r\n\t\twidth: 15%;\r\n\t\tborder: none;\r\n\t}\r\n\r\n\t.kwc_tbl_editbtncol2{\r\n\t\twidth: 15%;\r\n\t\tborder: none;\r\n\t}\r\n\r\n\t.kwc_tbl_editbtncol3{\r\n\t\twidth: 25%;\r\n\t\tborder: none;\r\n\t}\r\n\r\n\t.kwc_tbl_editbtncol4{\r\n\t\twidth: 45%;\r\n\t\tborder: none;\r\n\t}\r\n\t\r\n\t.kwc_blgid {\r\n\t\tfont-family: Arial, Helvetica, sans-serif !important;\r\n\t\tfont-size:  medium !important;\t\r\n\t}\r\n\t\r\n\t.kwc_blgtxtarea {\r\n\t\twidth: 100%;\r\n\t\theight: 300px;\r\n\t\tpadding: 12px 20px;\r\n\t\tbox-sizing: border-box;\r\n\t\tborder: 2px solid #ccc;\r\n\t\tborder-radius: 4px;\r\n\t\tbackground-color: #f8f8f8;\r\n\t\tfont-size: medium;\r\n\t\tresize: none;\r\n\t}\r\n\t\r\n\t.kwc_blgthumb {\r\n\t\twidth: 100px;\r\n\t\theight: 100px;\r\n\t}\r\n\t\r\n\t.kwc_statmsg_red {\r\n\t\tfont-family: Arial, Helvetica, sans-serif !important;\r\n\t\tfont-size:  medium !important;\r\n\t\tfont-weight: bold !important;\r\n\t\tcolor: red !important;\r\n\t}\r\n\t\r\n\t.kwc_statmsg_green {\r\n\t\tfont-family: Arial, Helvetica, sans-serif !important;\r\n\t\tfont-size:  medium !important;\r\n\t\tfont-weight: bold !important;\r\n\t\tcolor: green !important;\r\n\t}\r\n\t\r\n\t.kwc_action_msg {            \r\n\t\tfont-family: Arial, Helvetica, sans-serif;\r\n\t\tfont-size:  small;\r\n\t\tfont-weight: bold;\r\n\t\tcolor: blue;\r\n\t\tborder: none;\r\n\t}\r\n\t\r\n\t.kwc_hidden {\r\n\t\tdisplay: hidden !important;\r\n\t}\r\n\t\r\n\t.kwc_visible {\r\n\t\tdisplay: inline;\r\n\t}\r\n\t\t\r\n<\/style>\r\n\r\n<div class=\"wp-block-columns alignwide\"><form method=\"post\" id=\"blgform\" name=\"blgform\" action=\"#\" enctype=\"multipart\/form-data\"><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>03\/03\/22<\/strong>&nbsp;The sheep made a corporate decision to stay in the church for Christmas to look after the crib.     They are still there!<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2203031 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2203031\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22030310.png?1778071252\" style=\"display:block\"><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- FULL WIDTH TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:100%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>03\/03\/22<\/strong>&nbsp;The snowdrops are here!\ufeff \r\n\ufeff\r\n\ufeffTime for our year\u2019s news.   The three of us, Richard, Phyll and I are warm and comfortable at the \u2018Australian Bungalow\u2019 (21 Grove Road) in Havant, just quietly getting older.   Richard turned 91, and Phyll celebrated her 50th.  I am now 85.  I find I think a lot about Granny, who did so much for Angela and me, after Mother died, aged 84.   She took us shopping for school uniform, to London museums, and to the Watford Rep. I wonder if I would be that generous with my time, if the Grandchildren lived near?   And where did she find the energy?      We are the generation who are still around to remember life with bombs and air raids, but us War babies are getting more and more thin on the ground.\r\n\r\nPeter\u2019s family is out of sight, but hopefully not quite out of mind, in sunny California, and we have not seen them for two years.   Peter hopes to bring the tribe over during the Easter break, that will be Sersha, Lula, Jimmy, Tommy and some au pairs!   It depends on the dreaded Covid, which they have all had, possibly even twice.   \r\n\r\nRichard loves to read, and the most comfortable place he finds is to lie on his bed, climbing into an amazing chair Peter has given him, for the evening.   Phyll, works from home as a civil servant.    \r\n\r\nI had two \u2018events\u2019 during the year.  One was to make a sculpture of \u2018Black Lives Matter\u2019 a black man gives a white man a fireman\u2019s hitch, and the other was to have an exhibition of all my work, in our parish church, where Richard has been helping out since 1998. \r\n\r\nLook below for further details of both.<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2201130 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011304.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011305.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011306.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011301.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011302.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011303.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011307.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011308.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201130\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011300.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2201130',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 9 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2201130',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>13\/01\/22<\/strong>&nbsp;I threw everything I had at this exhibition, even the concrete cats of 50 years ago, to fill this large space.  I did not have enough plinths, so had to use the church tables with double sheets thrown over them.    Here are Phyll\u2019s photos of the exhibition first night.   You can enlarge the photos with two fingers.<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>12\/01\/22<\/strong>&nbsp;Here is our ancient parish church.   Tom the vicar has kindly kept  \u2018Black Lives Matter\u2019 in the church on display, while we look for a home for it.   According to a discussion on Radio 4, sculptures of black people are very rare, there are only three in London.   It would be good to find this one a home where it can fly the flag of equality of all people.     Everything else from the church exhibition has been packed away, except the sheep who decided to stay in the church and look after the crib!   So I fetched her sister from the garden and two lambs to keep her company!     The lovely thing was that when the children spent a Christmas afternoon in the church, they played with the sheep, riding them and photographing each other.   That\u2019s what sculpture is for isn\u2019t it?   There is also a fun rumour that the Vicar's grandson rode a sheep across the church during a Carol Service!<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2201121 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2201121\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011210.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2201121\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011211.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201121\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011212.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201121\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011213.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201121\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011214.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2201121',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 5 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2201121',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2201120 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2201120\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011200.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2201120\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011201.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201120\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011202.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201120\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011203.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201120\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011204.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201120\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011206.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201120\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011205.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201120\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011207.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2201120',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 8 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2201120',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>12\/01\/22<\/strong>&nbsp;These are the temporary \u2018installations\u2019 in the Exhibition in the church, see  previous post.   The first of eight photos comes from a rumour that prisoners in the Bosnian War were locked in dog cages.   It highlights the cruelty and futility of war. \r\n\r\nNext photo  is concerned with the problem of plastic, particularly that it does not rot, and is filling up the seas,  not to mention the suffering and death of marine life.   We know all this, we half heartedly recycle a bit of it,  but we cant seem to make plastic that rots, so we shrug and go on using it anyway.  \r\n\r\nNext photo:  \u201cKabul\u201d where two ladies dressed in burkas, lie bleeding on the ground, together with their baby.  \r\n\r\nNext one:  \u201cTsunami\u201d.  This one highlights climate change\r\n\r\nThe last is Jo, who is homeless and sleeping rough\r\n\r\nThese five \u2018installations\u2019 highlight some of our problems by bringing them to our attention visually.   They were shown on the floor, and got stepped on!   The joke about them was that \u2018some of Carol\u2019s sculptures never get off the ground!\u2019       It was fun putting them together.   You can enlarge the photos with your fingers.<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>11\/01\/22<\/strong>&nbsp;Invited by the Vicar, I have just had an exhibition of my work in the parish church here in Havant.   Newly renovated, it was an exciting space for an exhibition.   Having recently finished \u201cBlack Lives Matter\u201d  this was the centre piece.   The church was a big space to fill!<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2201110 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011100.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011101.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011102.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011103.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011104.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011105.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011106.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011107.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011108.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2201110\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/22011109.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2201110',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 10 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2201110',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2110190 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2110190\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21101900.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2110190\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21101901.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2110190\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21101902.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2110190\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21101903.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2110190\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21101904.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2110190\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21101905.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2110190\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21101906.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2110190\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21101907.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2110190',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 8 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2110190',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>19\/10\/21<\/strong>&nbsp;Here is \u2018Black Lives Matter\u2019 from ito beginnings.   It is made from offcuts of under floor insulation, and a spray can of that foam that builders use to fill holes.   Then to shape it, with ordinary plaster.   And finally to \u2018patinate\u2019 (colour) the final piece.   It is ready now to be cast.<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>05\/08\/21<\/strong>&nbsp;My sculpture of Black Lives Matter is now finished. It will join all my other work in an Exhibition in our local church here in Havant, in early autumn (dates to come). This comes out of the newspaper coverage of the black man who rescued the white man from trouble using a fireman\u2019s hitch during a Black Lives Matter rally.   It was in the wake of George Floyd\u2019s death<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2108050 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2108050\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21080500.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2108050\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21080501.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2108050',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 2 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2108050',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2101200 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012000.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012001.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012002.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012003.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012004.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012005.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012006.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012007.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012008.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2101200\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/21012009.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2101200',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 10 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2101200',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>20\/01\/21<\/strong>&nbsp;The snow drops are up!  Time for   ACWORTH  FAMILY (non) NEWS\r\n\r\nNot only did I not get round to sending cards at Christmas, but I missed the end of the year to wish friends a Happy New Year. (Optimistic?)\r\n\r\nWe are so lucky.   Richard and Phyll and I share a big house, so we are not in isolation all day, like so many.   We hardly go out, except to whiz to Waitrose.    Phyll works from home, so we are missing a dining room at present.   Richard, now 90, reads the Times from end to end, and he and I get older and more wrinkly.\r\n\r\nDespite losing Bingo last year, Richard still drives to his favourite waterfront to walk, and check out the Brent geese, who winter here but soon will take flight back to the tundra.   \r\n\r\nPeter and his four are in San Francisco, and we have not seen them for over a year, but they are fine, and growing up bi-lingual.      Peter was 50 this year.   \r\n\r\nI have a sculpture on the go for an exhibition in the church here, which was to have been in May.  More details in a previous post.    \r\n\r\nSigns of old age include losing things, and forgetting everything.   So nothing\u2019s changed really!    Just worse!\r\n\r\nTo make photos bigger, spread with two fingers.  In the photos you will see  Phyll\u2019s birthday, me trying selfies in the mirror, Phyll working in the dining room, Richard ploughing through the Times, Father\u2019s Day in San Fran, Phyll in her best Christmas outfit, me with a future oeuvre, the three toddlers over the Pond,  and snowdrops from Becky, over the road, Lastly progress on \u2018Black lives Matter\u2019 the sculpture of the moment.\r\n\r\nHang in there folks.   It has to improve.  Thank God for the vaccine.    We look for good things coming, like Spring and colour and health and normality, and getting together.<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>24\/12\/20<\/strong>&nbsp;A very Happy Christmas, and New Year!\r\nHere is a nativity I made when we lived at Derby.   \r\nI always wondered why our predecessors in this house painted the fireplace red, but today it seems like \r\njust the right colour!   Spread it to a bigger format with two fingers.<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2012240 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2012240\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20122400.png?1778071252\" style=\"display:block\"><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2012100 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121000.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121001.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121002.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121003.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121004.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121005.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121006.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121007.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121008.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2012100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20121009.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2012100',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 10 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2012100',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>10\/12\/20<\/strong>&nbsp;I am having some fun with my sculpture \u2018Black Lives Matter.\u2019  But finding it too cold to stay long in the workshop these days.   However it is coming along.    Here are some photos of the progress.  Including Richard and Phyll, (unlikely models, but very game, and most helpful) modelling for me!  Also Jack and Anna who come to clean the house, and get dragged in to modelling as well!<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>30\/10\/20<\/strong>&nbsp;Black Lives Matter.   Here is the sculpture so far.   I decided to do a life size torso of the photograph of the black man giving a white man a fireman\u2019s lift out of trouble during a Black lives matter rally in London.   I had to keep it light so I could move it about, and started with offcuts of insulation material glued together in a very rough shape.   Then I carved it back to a rough shape and started to use plaster.   It is now recognisable . . . .   Watch this space . . .<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2010300 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2010300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20103000.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2010300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20103001.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2010300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20103003.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2010300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20103002.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2010300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20103004.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2010300',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 5 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2010300',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2007140 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2007140\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071400.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2007140\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071401.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007140\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071402.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2007140',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 3 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2007140',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>14\/07\/20<\/strong>&nbsp;\u201cBlack Lives Matter\u201d:    I think I have bitten off more than I can chew.   Remember the black man who saw a white man being attacked during a riot, slinging him over his shoulder and carrying him to safety?     From a newspaper  photo I thought I would try and replicate them in clay, as a maquette.     But am struggling .  . . .  Here is the result, and they seem to have fallen apart!<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>10\/07\/20<\/strong>&nbsp;Last winter I got into holly leaves in a big way.  They go into wonderful dry shapes when they fall off the tree.   We have a big tree outside the kitchen window.    Still not thought out how to use them, although they look good in a heap with the light shining though them.   What about having a group enlarged and put somewhere in a public space for children to climb about in?<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2007100 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071001.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071002.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071003.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071004.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071000.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071005.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071006.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071007.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071008.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007100\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20071009.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2007100',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 10 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2007100',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2007091 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2007091\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20070910.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2007091\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20070911.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007091\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20070912.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2007091',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 3 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2007091',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>09\/07\/20<\/strong>&nbsp;I This was a One off technique I tried, a simple shape, inspired by Barbara Hepworth, but no horrible things like silicone rubber or fibreglass, with a mold at the end of it so that you can make lots of them, except that no one wants to buy it.   One copy just suits me fine.   Not exactly going to make a living though.     I always love a Barbara Hepworth look alike.<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>09\/07\/20<\/strong>&nbsp;Last year I was asked to produce a sculpture for a women\u2019s cancer hospital in Baton Rouge, Louisiana.   They had seen my \u2018Family\u2019 that I made years ago in Cyprus, and wanted the same as a bass relief.   It was duly made and enlarged to five feet high to go into a niche, created for it in the wall.   I added a teddy which I thought the children could touch as they passed, but that idea did not work for them, so I had to remove it.   I really liked him, specially as he was modelled on my own childhood teddy, now almost hairless and darned all over.\r\n\r\nThree photos:   The original made years ago, with Teddy and Without him!   Which do you like?<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2007090 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2007090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20070900.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2007090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20070901.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2007090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20070902.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2007090',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 3 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2007090',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2006300 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2006300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20063000.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix2006300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20063003.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2006300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20063002.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix2006300\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20063004.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2006300',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 4 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix2006300',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>30\/06\/20<\/strong>&nbsp;The Coronavirus lockdown was a testing time for everyone. With our children and grandchildren 140 miles away in the Southwest we diverted a lot of love and energy to the allotment, which ended up looking much more manicured than usual. Eventually, the government allowed us a day trip to the south and we had a fantastic barbecue in the garden with the kids.\r\n\r\nNote from Carol:   So glad to see Ken, along with Margaret taking time off from creating this website for me, leaving the allotment for a bit and seeing the grandchildren at last!   Well done Folks<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>28\/06\/20<\/strong>&nbsp;Just finished a little maquette for covid, but it is not quite right.   Although the carer is dressed authentically in ppe, the victim has turned out looking like a child, and actually Children come very well out of covid and don\u2019t even know they have had it.   So I\u2019ve got to think that out a bit, and start again.<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix2006280 {width:100%;}<\/style><img decoding=\"async\" class=\"pix2006280\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/20062800.png?1778071252\" style=\"display:block\"><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1508310 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1508310\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/15083100.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1508310\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/15083101.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1508310\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/15083102.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1508310\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/15083103.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1508310\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/15083104.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1508310\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/15083105.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1508310\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/15083106.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1508310',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 7 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1508310',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>31\/08\/15<\/strong>&nbsp;We had a surprise family Christmas last year, as Richard fell down the stairs a few days before, and due to Phylls quick thinking, wound up in Accident and Emergency. To cut a long story short, despite breaking no bones, he was in hospital till February with a head wound, and then in a Care home near home. The House in France is let and Phyll, Richard and I are moving to a larger house down the road. Click on the photo to show Richard in our local hospital where they were terrific. He never forgot how to read. Then Raffi and Rosemary come down and join us for a day. He then is well enough to come downstairs and meet up with Bingo. In February he moved to the Carehome and could go out in the car. Here is Julie from France paying him a visit. Then a visit into Waitrose, hurrah, the shopper is back. Had to get him a My Waitrose card. The next to last photo ihe is saying goodbye to the Gang of Angels. That\u2019s my name for the quite incredibly wonderful staff at Emsworth House Carehome. And there we are celebrating in the local. It was a tough 7 months, but here we all are. New address to follow . . . . .<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>22\/11\/14<\/strong>&nbsp;Decision! No more bronze resin! No more messing about with molds and cast, at which I am totally ungifted, and I hate it! What the hell am I doing at 77 gearing myself up and stinking the house out for fibreglass and resin? I am going Back To Wood, while my arthritic fingers can still wield a chisel and clutch a mallet. Here is the log, here is the idea in wire, another pair of dancers. (I sell them, and then I miss them) On my website, look at Gallery, and then Wood, it is much the best anywhere in the website. Now I have put the log on the blog, I have got to bloody do it! Watch this space. Meanwhile, please admire the shelving, put up by Robin Field, who inspired me to put up some more, and at last the workshop is coming together and there is some space.<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1411220 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1411220\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14112200.png?1778071252\" style=\"display:block\"><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1408172 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1408172\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081720.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1408172\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081721.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408172\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081722.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1408172',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 3 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1408172',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>17\/08\/14<\/strong>&nbsp;I am losing people at the moment. Remember Kevin? Who ordered a new work to be enlarged to 5 metres for his new Art Centre in Narbonne. So I made the Two Heads, and off they went with him to be enlarged, coming back a year ago. I have completely lost Kevin, but have the two heads back, and at last have cast them in bronze resin. I have also lost Steve the castor, so made the mold myself, and cast it. I really hate bronze resin, and get it all over myself, and then am usually not pleased with my results. However this one is not too bad, and here we all are. Another piece for the garden, and I think I will put them on my facebook page!<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>17\/08\/14<\/strong>&nbsp;The garden has grown and flourished. The sequence starts with the race to get it done for the wedding last year, and ends with the rose planted for Sersha\u2019s christening . Sersha and the rose and the garden are now more than two years old.<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1408171 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081710.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081711.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081712.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081713.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081714.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081715.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081716.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081717.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081718.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408171\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081719.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1408171',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 10 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1408171',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1408170 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1408170\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081700.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1408170\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081701.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1408170\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14081702.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1408170',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 3 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1408170',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>17\/08\/14<\/strong>&nbsp;Just done an exhibition here. Wonderful space, a disused church, Chapel des penitants. But all slightly depressing. I resurrected the tall cats, in stone, plus the old birdbath, and sold a cat and the birdbath. I exhibited old favourites, knowing nothing else would sell.<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>02\/08\/14<\/strong>&nbsp;Guess who I saw at st Pancras getting on eurostar to go to France for the Nornandy celebrations? I was meeting two old schoolfriends, Chad and Di. (They were more important than even the queen)<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1408020 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1408020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14080200.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1408020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14080201.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1408020',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 2 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1408020',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1405090 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1405090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14050900.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1405090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14050901.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1405090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14050902.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1405090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14050903.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1405090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14050904.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1405090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14050905.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1405090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14050906.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1405090\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14050907.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1405090',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 8 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1405090',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>09\/05\/14<\/strong>&nbsp;Guess where I have been . . .? Florida Keys, with Peter, Susan and Sersha. Conal and Ann Clancy joined Richard Phyll and I on a two week adventure. Surrounded by sea and coconut trees and a colourful garden, we have breakfast and Peter and Sersha take to the pool. Then a serious consultation on Sersha\u2019s ipad. You can see the neighbour\u2019s letter box dressed for Easter, and how the rich live, with the boat at the end of the garden. We all gather together for dinner, having played in the sea and sun all day!<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>02\/03\/14<\/strong>&nbsp;Here is the Snowdrop! Another year at the Moulin. It\u2019s a bit of a struggle really. I shan\u2019t be buying a plot and building a house again, that is for sure. . I am just finishing the garden design with a pergola, but there is loads of planting and growing still to do. I\u2019m not much enjoying getting old, with its associated aches and pains, I thought it was something that happened to other people! And just to think how easy it was to talk about Little old Biddies, and now I am one! Meanwhile, Richard, seven years my senior at 83 is in fine fettle. Although he spends quite a lot of time lining up his pills morning and evening, he helps out with the Anglican Church here, and in Havant. Peter and Susan are well, living in San Francisco with little Sersha, now two. Their marriage here in France last May was the event of the year. Phyll is well too, did a sideways job move during the year and likes it better, living in Richard\u2019s house in Havant and keeping it warm in winter Sculpture is low on the list, although I won Artist of the Year with the Beverley Hills Outlook, an on line arts and culture review, and my only recent sculpture was favourably reviewed by them in February\u2019s edition. I still sell slowly at Fisherton Mill in Salisbury and the Cecilia Colman Gallery in St Johns Wood. I have been with Cecilia for over thirty years, starting with alabaster cats back in Derbyshire days. In contrast to that highly respected West London gallery, occasionally I get an order from one of Peter\u2019s websites. Here we all are. To see the photos, click on the snowdrop and WAIT. Eventually ten photos will rotate. Happy New Year! .<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1403020 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030200.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030201.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030202.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030203.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030204.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030205.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030206.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030207.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030208.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1403020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14030209.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1403020',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 10 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1403020',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- RIGHT TEXT ROW --><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1401280 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1401280\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14012800.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1401280\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14012801.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1401280\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14012802.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1401280\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14012803.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1401280\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14012804.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1401280',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 5 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1401280',1)\">&#10095;<\/button><\/div><\/div><\/div><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>28\/01\/14<\/strong>&nbsp;I\u2019ve been working on a little \u201csketch\u201d. I think it is called \u201cThe tree of mirth\u201d but I thought of \u201cFour old Farts\u201d which gives a pretty good idea what they are laughing about. How do you do sculptures that make you laugh or smile, without getting cartoony? Phyll says she wants it at Havant because, she says: \u201cI love the old farts because they are so jolly. Its like seeing a ray of sunshine on a stormy afternoon. It just gives you a lift, looking at it! \u201d It begun as a maquette for a wood carving, but somehow it took on a different momentum . . . Perhaps it is the beginning of something.<\/p><\/div><\/div><div class=\"wp-block-columns alignwide\">   <!-- LEFT TEXT ROW --><div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:75%\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><p style=\"font-size:16px;font-family:Helvetica\" class=\"has-custom-font\"><br><strong>02\/01\/14<\/strong>&nbsp;This sculpture, which I made while staying with Peter in the Armory in San Francisco some years ago, has just won me the award of Top Artist of the Year with the Beverley Hills Outlook, which is an online monthly review of Culture and Art. Well . . . I made that a long time ago. Next the BHO is going to review my latest work \u201cComplete\u201d which was made for Kevin Brennan of Narbonne, who had it made 5.5m high for his garden. Sadly I have never seen it, and have lost touch with him, and just have the 75cm plaster original. I think this award, and the Editors encouragement might get me casting it.<\/p><\/div><div class=\"wp-block-column\" style=\"flex-basis:25%\"><div class=\"w3-content w3-display-container\"><style>.pix1401020 {width:100%;}<\/style><img decoding=\"async\" class=\"pix1401020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14010200.png?1778071252\" style=\"display:block\"><img decoding=\"async\" class=\"pix1401020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14010201.png?1778071252\" style=\"display:none\"><img decoding=\"async\" class=\"pix1401020\" src=\"https:\/\/carolacworth.com\/V100\/kwc-blog\/14010202.png?1778071252\" style=\"display:none\"><div align=\"center\"><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1401020',-1)\">&#10094;<\/button><span style=\"font-family: Arial, Helvetica, sans-serif; font-size:  small;\"> 3 Pics <\/span><button type=\"button\" class=\"kwc_btn\" onclick=\"plusDivs('pix1401020',1)\">&#10095;<\/button><\/div><\/div><\/div><\/div><p> <br \/> <br \/> <\/p><input id=\"frmblgid\" name=\"frmblgid\" type=\"hidden\" value=\"\" \/><input id=\"frmimgid\" name=\"frmimgid\" type=\"hidden\" value=\"\" \/><input id=\"frmimglst\" name=\"frmimglst\" type=\"hidden\" value=\"012\" \/><input id=\"frmbtnid\" name=\"frmbtnid\" type=\"hidden\" value=\"\" \/><input id=\"frmstatusmsg\" name=\"frmstatusmsg\" type=\"hidden\" value=\"\" \/><input id=\"frmchanged\" name=\"frmchanged\" type=\"hidden\" value=\"0\" \/><\/form>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_coblocks_attr":"Helvetica","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"class_list":["post-639","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/carolacworth.com\/V100\/wp-json\/wp\/v2\/pages\/639"}],"collection":[{"href":"https:\/\/carolacworth.com\/V100\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/carolacworth.com\/V100\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/carolacworth.com\/V100\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/carolacworth.com\/V100\/wp-json\/wp\/v2\/comments?post=639"}],"version-history":[{"count":0,"href":"https:\/\/carolacworth.com\/V100\/wp-json\/wp\/v2\/pages\/639\/revisions"}],"wp:attachment":[{"href":"https:\/\/carolacworth.com\/V100\/wp-json\/wp\/v2\/media?parent=639"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}