Sign up for the Guyana, South America Monthly E-Magazine absolutely free!
var rm_pre_data = {"ajax_url":"https://guyanasouthamerica.gy/people/wp-admin/admin-ajax.php", "rm_nonce_field":"8a04c0a800"};jQuery.fn.bindFirst = function(name, fn) { // bind as you normally would // don't want to miss out on any jQuery magic this.on(name, fn); var events = this.data('events') || jQuery._data(this[0], 'events'); var handlers = events[name]; // take out the handler we just inserted from the end var handler = handlers.splice(handlers.length - 1)[0]; // move it at the beginning handlers.splice(0, 0, handler); };//Rainmaker var Rainmaker = function() {}Rainmaker.prototype = {init : function(form){ // var that = form;if(jQuery(form).closest('.rainmaker_form').length < 1) return;if(jQuery(form).closest('.rainmaker_form').hasClass('rm_init_done') ) return;if(jQuery(form).find('.rm_required_field, .ig_form_required_field').length < 1){ jQuery(form).append('
'); }jQuery(form).closest('.rainmaker_form').addClass(jQuery(form).closest('.rainmaker_form').data('type') || '');jQuery(form).bindFirst('submit', function(e){ window.rainmaker.addLead(e, jQuery(e.target)); }); // submit Event jQuery(form).closest('.rainmaker_form').addClass('rm_init_done'); },addLead : function(e, form, icg_msg){ var form = form || undefined; if(typeof(form) !== 'undefined'){ if(jQuery(form).closest('.rainmaker_form').length 0; if(!jQuery(fm_parent).hasClass('rm_custom') || (!jQuery(form).attr('action') && !mc4wpform) ){ e.preventDefault(); }if(jQuery(form).find('.rm_required_field').val() || jQuery(form).find('.ig_form_required_field').val()){ jQuery(fm_parent).find('.rm-loader').hide(); form.slideUp("slow"); jQuery(fm_parent).find('div.rm_form_message').show(); return; } var formData = {}; var formData = window.rainmaker.prepareFormData(e, form, icg_msg, formData); action = rm_pre_data.ajax_url + '?action=rm_rainmaker_add_lead'; jQuery(form).trigger( 'add_lead.rm', [formData] );jQuery.ajax({type: 'POST', url: action, data: formData, dataType: 'json', success: function(response){ if(response && typeof response.error !== 'undefined' && response.error !== ""){ jQuery(fm_parent).find('.rm-loader').hide(); jQuery(fm_parent).find('div.rm_form_error_message').text(response.error).show(); jQuery(window).trigger('error.rm', [form, response]); } else if(response && typeof response.success !== 'undefined'){ jQuery(form)[0].reset(); jQuery(form).trigger('success.rm', [form, response]); jQuery(fm_parent).find('.rm-loader').hide(); //TODO :: Later Move this in success callback form_message = jQuery(fm_parent).next('div.rm_form_message').html(); if( typeof form_message !== 'undefined' && form_message.trim() !== ''){ jQuery(fm_parent).slideUp("slow"); jQuery(fm_parent).next('div.rm_form_message').show(); // jQuery(fm_parent).next().next('div.rm_form_error_message').hide(); } //TODO :: Later Move this in success callback var redirection_url = response.redirection_url || ''; redirection_url = redirection_url.trim(); if (typeof(redirection_url) === 'string' && redirection_url != '') { if (!/^https?:\/\//i.test(redirection_url) ) { redirection_url = "http://"+redirection_url; } setTimeout(function(){ window.location.href = redirection_url; }, 200); }}else{ jQuery(fm_parent).find('.rm-loader').hide(); } }, error: function(err){ jQuery(fm_parent).find('.rm-loader').hide(); console.log(err); }, }); } },prepareFormData: function (e, form, icg_msg, formData){ jQuery.each((jQuery(form).serializeArray() || {}), function(i, field){ formData['rmfpx_'+ field.name] = field.value; });formData['rmfpx_added'] = true; formData['rmfpx_rm_nonce_field'] = rm_pre_data.rm_nonce_field; formData['rmfpx_rm_form-id'] = jQuery(form.closest('.rainmaker_form')).data('form-id');// Send Icegram Data To Rainmaker if(typeof icegram !== 'undefined'){ formData['rmfpx_ig_mode'] = icegram.mode; formData['rmfpx_ig_remote_url'] = window.location.href; if(typeof icg_msg === 'undefined'){ var msg_id = (jQuery(form.closest('[id^=icegram_message_]') || {}).attr('id') || '').split('_').pop() || 0 ; icg_msg = icegram.get_message_by_id(msg_id) || {}; } if(typeof icg_msg.data !== 'undefined'){ formData['rmfpx_ig_message_id'] = icg_msg.data.id; formData['rmfpx_ig_campaign_id'] = icg_msg.data.campaign_id; } } return formData; }, };if(typeof window.rainmaker === 'undefined'){ window.rainmaker = new Rainmaker(); }jQuery(document).ready(function(){ jQuery('.rainmaker_form form').each(function(i, v){ window.rainmaker.init(v); }); });// Start : For Icegram Compatibility jQuery( window ).on( "init.icegram", function(e, ig) { // Find and init all RM forms within Icegram messages/divs if(typeof ig !== 'undefined' && typeof ig.messages !== 'undefined' ){ jQuery.each(ig.messages, function(i, msg){ var forms = jQuery(msg.el).find('.rainmaker_form form'); forms.each(function(i, form){ if(!jQuery(form).hasClass('rm_init_done')){ window.rainmaker.init(form); jQuery(form).addClass('rm_init_done'); } }); }); }}); // init.icegram//Handle CTA function(s) after successful submission of form jQuery( window ).off('success.rm'); jQuery( window ).on('success.rm', function(e, form, response) { if( typeof icegram !== 'undefined'){ var msg_id = ((jQuery(e.target).closest('[id^=icegram_message_]') || {}).attr('id') || '').split('_').pop() || 0 ; var msg = icegram.get_message_by_id(msg_id) || undefined; if(typeof msg !== 'undefined'){ //TODO:: test this for contact form. // if(msg.data.cta === 'form_via_ajax' && msg.el.find('.rm_subscription').length > 0){ if(msg.data.cta === 'form_via_ajax' && msg.el.find('.rm_subscription, .rm_contact').length > 0){ // TODO::test this , causing duplicate messages msg.el.trigger('form_success.ig_cta', [msg]); } else if(msg.data.cta === 'form' || !msg.data.cta){ if(msg.data.use_form == undefined){ msg.data.response_text = ''; } response_text = '
'+ (msg.data.response_text || msg.el.find('.rm_form_message').html() || '') +'
'; msg.el.find('.ig_form_container, .ig_message, .ig_headline').hide(); var appendTo = msg.el.filter('.ig_container'); if(jQuery.inArray(msg.data.type, ['interstitial', 'messenger']) !== -1){ appendTo = msg.el.find('.ig_message'); appendTo.show(); msg.el.find('.ig_headline').text('').show(); }else if(msg.data.type === 'tab'){ //TODO :: hide is not working appendTo = msg.el.find('.ig_data'); msg.el.find('.ig_headline').show(); } try{ appendTo.append(response_text); }catch(err){ console.log(err); } } }} }); //success.rm// addLead on IG-CTA form submit event jQuery(window).off('form_submit.ig_cta'); jQuery(window).on('form_submit.ig_cta', window.rainmaker.addLead);

Professional Painter and Craftswoman, Sheliza Rampersaud, Is a Talented Guyanese (Redirected)

Be sure to like our Facebook Page: Guyana, South America for more!

This article has been migrated to: Professional Painter and Craftswoman, Sheliza Rampersaud, is a talented Guyanese on the Guyana, South America Official Website.

First Published: 26th of August, 2020. Guyana, South America.

Last updated: December 23, 2022 at 1:43 am

If you would like to purchase any of Sheliza’s amazing paintings, you can find her on:

  • Email: shelizar06@gmail.com
  • Phone: (592) 692-7858 or (592) 629-0812 (WhatsApp Available)
  • Fb/messenger: sheliza Rampersaud
  • Instagram: sheliza22

Sheliza Rampersaud describes herself as a 27-year-old “creative human” who grew up on the on the East Coast of Demerara, Guyana, South America. The youngest of three siblings, she has a passion for creating art, traveling, cooking, and reading.

I started doing art when I was in primary school. I was always doodling and drawing at the back of my books, and I had gotten a consistency of A’s and A+ on all my art tests, and my class teacher was very encouraging and advised me to keep practicing my skills.

Ms. Rampersaud attended Tutorial High School where she was further exposed to art and became intrigued to learn more and develop her skills. She decided later on that she wanted to be an artist and went into the Art stream in High School. After graduating, she was encouraged again by a few teachers to go and further her studies at the E. R Burrowes School of Arts.

As a teenager and coming from a broken home, I used art as a way to escape from my reality and hence it became important to me. Getting my mother to agree to send me to art school was a challenge by itself because she wanted me to excel at something else such as business or science. But I was persistent about knowing who I want to become and eventually she caved, and I got registered to attend BSA.

Sheliza relates that, upon arriving at Burrowes, her mind was opened to so many other aspects of art given that it was an entire new level and adventure to explore. It also gave her the opportunity to go to places and meet some of the most amazing creative humans, some of whom she has made lasting friendships with.

Sheliza spent three years at the E.R Burrowes School of Arts and, although it wasn’t easy, made it through and graduated in 2014. She was in the top 3 of her year graduating class and received a Diploma in Fine Arts. Her class of 2014 was the first batch to graduate from the now Institute of Creative Arts, E.R Burrowes School of Arts.

The young girl relates that, after graduating, she began painting professionally, but it was difficult getting a job in the art field and it became quite a struggle for her, so she put it aside and got a 9-5 job in sales.

Sheliza has taken part in many exhibitions across Guyana and has done over a 100 paintings in total. Currently she’s a member of two art groups:

  1. The Moving circle of Artists (MCA)–which was founded by the late George Simon who was one of Guyana’s most renowned and talented artist and archeologist.
  2. Kayap–which is a group of young artists trying to make a space for themselves in the art society.

After joining MCA in 2018, I was given the opportunity to travel to Region 9 to teach work shops on art. I can most definitely say that, given that nature is my number one inspiration, I fell instantly in love and at home in the Rupununi, and I loved spending time there.

Aside from being a painter, Sheliza is also a ceramist, a professional face and body painter, a crafter, and a part time art teacher. She is mostly a landscape painter but, as she puts it, “dabbles in other areas of art too.”

She has recently taken up an interest in photography, and, although she has no professional experience in the field, she is teaching herself bit by bit through Google and YouTube. In the past, she worked as a crafter and sales rep at Everything Makes Craft (EMC) which is a company that makes local products from mainly upcycle materials. She has also been doing painting on the side from taking orders or commissioned pieces.

Presently, Sheliza is trying to create her own brand. Accordingly, she is in the process of starting her own little crafting shop where she would be doing more craft items such as handmade cards, dreamcatchers, wall and party décor, hand painted mugs, customized mugs, clay and hand painted jewelry, handmade earrings, keyrings, etc. The name her new self-started business is Crafty Affairs.

We like to write stories that inspire: stories of success, stories of beating the odds, of overcoming obstacles, stories of talented Guyanese. If you have a story for us to tell, email us at: contact@guyanasouthamerica.gy or inbox us on our Facebook Page.

Read More: People in Focus

Subscribe
Notify of
guest
3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Christine DeCambra-Forrester
Christine DeCambra-Forrester
3 years ago

Absolutely awesome and beautiful paintings! Sheliza is a natural!

Hazel Woolford
Hazel Woolford
3 years ago

Congratulations

Jean Samaroo
Jean Samaroo
2 years ago

Beautiful paintings – keep up the good work!

3
0
Would love your thoughts, please comment.x
()
x