CINXE.COM

Frequently Asked Questions | Pixels

<!DOCTYPE html> <html> <head> <title>Frequently Asked Questions | Pixels</title> <meta name="description" content="Browse through our frequently asked questions and answers."> <meta name='viewport' content='width=device-width, initial-scale=1'> <meta name='robots' content='noindex'> <link rel='canonical' href='https://pixels.com/contactus.html?tab=faq'> <link rel='stylesheet' type='text/css' href='/css/stylesheet.css?v=8241b3c680'> <script type='text/javascript' src='/js/globalScripts.js?v=8241b3c680'></script> <script type='text/javascript' src='https://www.google.com/recaptcha/api.js'></script> <script type='text/javascript' src='/js/jquery371.js'></script> <script id="ze-snippet" src="https://static.zdassets.com/ekr/snippet.js?key=56c38c5e-a024-450f-828f-ffe278fb406e"></script> <script type='text/javascript'> var httpobject = []; var requestcount = 0; var stamp = new Date(); var previoustime = stamp.getTime(); var timerid = -99; var allowChat = 1; function newHttpReq() { var newRequest = null; try { newRequest = new XMLHttpRequest(); } catch(trymicrosoft) { try { newRequest = new ActiveXObject("Msxml2.XMLHTTP"); } catch(othermicrosoft) { try { newRequest = new ActiveXObject("Microsoft.XMLHTTP"); } catch(failed) { newRequest = null; } } } return newRequest; } httpobject[-1] = newHttpReq(); if(!httpobject[-1]) { alert("Error Initializing XMLHttpRequest!"); } function submitform() { document.getElementById('submitdiv').innerHTML = "<img src='/assets/images/Searching.gif' style='float: left;'>"; document.getElementById('supportticketform').submit(); } function submitfaqsearchform() { document.getElementById('faqsearchform').submit(); } function displayfaq(id) { if(document.getElementById('faq[' + id + ']').style.display == 'none') { document.getElementById('faq[' + id + ']').style.display = 'inline-block'; if(document.getElementById('faqlink[' + id + ']')) { document.getElementById('faqlink[' + id + ']').style.display = 'inline-block'; } } else { document.getElementById('faq[' + id + ']').style.display = 'none'; if(document.getElementById('faqlink[' + id + ']')) { document.getElementById('faqlink[' + id + ']').style.display = 'none'; } } } function lookupfaq(page) { if(timerid != -99) { clearTimeout(timerid); } var subject = document.getElementById('subject').value; var email = document.getElementById('email').value; var stamp = new Date(); var currenttime = stamp.getTime(); elapsedtime = (currenttime - previoustime) / 1000; previoustime = currenttime; if(subject.length == 0) { document.getElementById('faqsearchresultsdiv').style.display = 'none'; } if(elapsedtime < 0.500) { timerid = setTimeout("lookupfaq(" + page + ")",750); return; } if (subject.length >= 3) { //alert(subject); document.getElementById('faqsearchresultsdiv').innerHTML = "<p style='float: left; padding-top: 2px; padding-right: 10px; font-size: 11pt; font-family: helvetica, arial; '>Searching for Possible Answers</p><img src='/assets/images/Searching.gif' style='float: left;'>\n"; document.getElementById('faqsearchresultsdiv').style.display = 'inline'; var localvalue = requestcount; httpobject[localvalue] = newHttpReq(); httpobject[localvalue].onreadystatechange = function(){ try { if(httpobject[localvalue].readyState == 4) { } if(httpobject[localvalue].status == 200) { } } catch (e) { return; } if(httpobject[localvalue].readyState == 4 && httpobject[localvalue].status == 200) { document.getElementById('faqsearchresultsdiv').innerHTML = httpobject[localvalue].responseText; } }; var url = "../queries/querycontactusfaqsearch.php"; var poststring = "subject=" + encodeURIComponent(subject) + "&email=" + encodeURIComponent(email) + "&page=" + page; httpobject[localvalue].open('post',url,true); httpobject[localvalue].setRequestHeader("content-type", "application/x-www-form-urlencoded"); httpobject[localvalue].send(poststring); requestcount += 1; } } function hidefaqresults() { document.getElementById('faqsearchresultsdiv').innerHTML = '&nbsp;'; document.getElementById('faqsearchresultsdiv').style.display = 'none'; } function lookupfaqsearchterm(page) { if(timerid != -99) { clearTimeout(timerid); } var subject = document.getElementById('faqsearchterm').value; var stamp = new Date(); var currenttime = stamp.getTime(); elapsedtime = (currenttime - previoustime) / 1000; previoustime = currenttime; if(subject.length == 0) { document.getElementById('faqsearchtermresultsdiv').innerHTML = ''; } if(elapsedtime < 0.500) { timerid = setTimeout("lookupfaqsearchterm(" + page + ")",750); return; } if (true) { if(subject.length <= 3) { subject = ''; } //alert(subject); document.getElementById('faqsearchtermresultsdiv').innerHTML = "<p style='float: left; padding-top: 2px; padding-right: 10px; font-size: 11pt; font-family: helvetica, arial; '>Searching for Possible Answers</p><img src='/assets/images/Searching.gif' style='float: left;'>\n"; //document.getElementById('faqsearchresultsdiv').style.display = 'inline'; var localvalue = requestcount; httpobject[localvalue] = newHttpReq(); httpobject[localvalue].onreadystatechange = function(){ try { if(httpobject[localvalue].readyState == 4) { } if(httpobject[localvalue].status == 200) { } } catch (e) { return; } if(httpobject[localvalue].readyState == 4 && httpobject[localvalue].status == 200) { document.getElementById('faqsearchtermresultsdiv').innerHTML = httpobject[localvalue].responseText; } }; var url = "../queries/queryfaqsearch.php"; var poststring = "subject=" + encodeURIComponent(subject) + "&page=" + page; httpobject[localvalue].open('post',url,true); httpobject[localvalue].setRequestHeader("content-type", "application/x-www-form-urlencoded"); httpobject[localvalue].send(poststring); requestcount += 1; } } function faqSearchCheckForEnter(event) { theEvent = event || window.event; if(theEvent.keyCode === 13) { //lookupfaqsearchterm(1); theEvent.preventDefault(); } } function createForegroundAndBackgroundDiv() { if(!document.getElementById('foregroundDiv') || !document.getElementById('backgroundDiv')) { var newdiv; //var cssstyle; // Background Div if(!document.getElementById('backgroundDiv')) { newdiv = document.createElement('div'); //cssstyle = ''; newdiv.id = 'backgroundDiv'; //newdiv.setAttribute('style',cssstyle); //newdiv.style.cssText = cssstyle; document.body.appendChild(newdiv); } // Foreground Div if(!document.getElementById('foregroundDiv')) { newdiv = document.createElement('div'); //cssstyle = ''; newdiv.id = 'foregroundDiv'; //newdiv.setAttribute('style',cssstyle); //newdiv.style.cssText = cssstyle; document.body.appendChild(newdiv); } } } function showAttachmentForm() { showForegroundAndBackgroundDiv(); var localvalue = requestcount; var postString = 'action=showUploadForm'; httpobject[localvalue] = newHttpReq(); httpobject[localvalue].onreadystatechange = function(){ try { if(httpobject[localvalue].readyState == 4) { } if(httpobject[localvalue].status == 200) { } } catch (e) { return; } if(httpobject[localvalue].readyState == 4 && httpobject[localvalue].status == 200) { document.getElementById('foregroundDiv').innerHTML = httpobject[localvalue].responseText; } }; var url = '../queries/queryUploadAttachmentContactUs.php'; httpobject[localvalue].open('POST',url,true); httpobject[localvalue].setRequestHeader("content-type", "application/x-www-form-urlencoded"); httpobject[localvalue].send(postString); requestcount += 1; } function submitAttachment() { document.getElementById('attachmentForm').submit(); document.getElementById('uploadMessageDiv').innerHTML = "<p style='display: inline-block; vertical-align: middle; font-size: 10pt; font-family: helvetica, arial; padding-right: 5px;'>Please Wait</p><img style='display: inline-block; vertical-align: middle;' src='/assets/images/Searching.gif'>"; } function showForegroundAndBackgroundDiv() { var backgroundObject = document.getElementById('backgroundDiv'); backgroundObject.style.width = '100%'; backgroundObject.style.height = '100%'; backgroundObject.style.visibility = 'visible'; var widthClient = parseInt(document.documentElement.clientWidth); var heightClient = parseInt(document.documentElement.clientHeight); var widthTarget; var heightTarget; if(heightClient < 400) { widthTarget = parseInt(widthClient*0.95); heightTarget = parseInt(heightClient*0.95); } else { if(widthClient > heightClient) { widthTarget = parseInt(widthClient*0.80); heightTarget = parseInt(heightClient*0.60); } else { widthTarget = parseInt(widthClient*0.80); heightTarget = parseInt(heightClient*0.80); } } if(widthTarget > 900) { widthTarget = 900; } if(heightTarget > 800) { heightTarget = 800; } var offsetLeft = 0; var offsetTop = 0; var offsetX = 0; var offsetY = 0; var foregroundObject = document.getElementById('foregroundDiv'); foregroundObject.style.width = widthTarget + 'px'; foregroundObject.style.height = heightTarget + 'px'; foregroundObject.style.visibility = 'visible'; //foregroundObject.innerHTML = "<img src='/assets/images/Searching.gif' style='display: inline-block; margin-top: 20px;'>"; foregroundObject.style.left = (offsetX + offsetLeft + parseInt((widthClient - (widthTarget + 0)) / 2)) + 'px'; foregroundObject.style.top = (offsetY + offsetTop + parseInt((heightClient - (heightTarget + 0)) / 2)) + 'px'; document.getElementById('closeForegroundXImage').style.display = 'inline-block'; } function hideForegroundAndBackgroundDivs() { document.getElementById('backgroundDiv').style.visibility = 'hidden'; document.getElementById('foregroundDiv').style.visibility = 'hidden'; document.getElementById('closeForegroundXImage').style.display = 'none'; } function updateAttachmentList() { hideForegroundAndBackgroundDivs(); var localvalue = requestcount; httpobject[localvalue] = newHttpReq(); httpobject[localvalue].onreadystatechange = function(){ try { if(httpobject[localvalue].readyState == 4) { } if(httpobject[localvalue].status == 200) { } } catch (e) { return; } if(httpobject[localvalue].readyState == 4 && httpobject[localvalue].status == 200) { document.getElementById('attachmentContainerDiv').innerHTML = httpobject[localvalue].responseText; } }; var url = 'queries/queryContactUsAttachments.php?action=updateList'; httpobject[localvalue].open('GET',url,true); httpobject[localvalue].send(null); requestcount += 1; } function deleteAttachment(attachmentId) { var localvalue = requestcount; httpobject[localvalue] = newHttpReq(); httpobject[localvalue].onreadystatechange = function(){ try { if(httpobject[localvalue].readyState == 4) { } if(httpobject[localvalue].status == 200) { } } catch (e) { return; } if(httpobject[localvalue].readyState == 4 && httpobject[localvalue].status == 200) { document.getElementById('attachmentContainerDiv').innerHTML = httpobject[localvalue].responseText; } }; var url = 'queries/queryContactUsAttachments.php?action=deleteAttachment&deleteAttachmentId=' + attachmentId; httpobject[localvalue].open('GET',url,true); httpobject[localvalue].send(null); requestcount += 1; } function launchChat() { var departmentData = zE('webWidget:get', 'chat:department', 'Customer Service'); console.log(departmentData); //return; window.zESettings = { webWidget: { contactOptions: { enabled: true, contactButton: { '*': 'Get in touch' } } } }; //zE('webWidget', 'reset'); zE('webWidget', 'open'); zE('webWidget', 'show'); } zE('webWidget', 'open'); zE('webWidget', 'hide'); zE('webWidget:on', 'close', function() { zE('webWidget', 'hide'); }); zE('webWidget:on', 'chat:connected', function(){ var departmentData = zE('webWidget:get', 'chat:department', 'Customer Service'); if(allowChat == 1 && departmentData.status == 'online') { document.getElementById('chatButtonContainerDiv').style.display = 'inline-block'; } else { //alert('no'); } }); window.addEventListener('resize',function(e) { if(document.getElementById('foregroundDiv') && document.getElementById('foregroundDiv').style.visibility == 'visible') { showForegroundAndBackgroundDiv(); } }); </script> <style> h1 { float: none; display: inline-block; width: 100%; font-size: 18pt; font-family: montserratregular, cabin; color: #444444; border-bottom: none; text-align: center; text-transform: uppercase; } h1:after { display: block; width: 100px; height: 2px; overflow: hidden; background-color: #CCCCCC; content: ""; margin: auto; margin-top: 12px; margin-bottom: 10px; font-size: 10pt; line-height: 0%; } h2 { float: left; display: inline-block; width: 100%; font-size: 20pt; font-family: cabin, oswald, arial; font-weight: normal; padding-top: 50px; padding-bottom: 10px; border-bottom: 1px solid #CCCCCC; } #contactUsSubtitle { display: inline-block; width: 100%; padding-top: 0px; font-size: 11pt; font-family: helvetica, arial; color: #444444; line-height: 150%; text-align: center; } #contactUsSubtitle a, #contactUsSubtitle a:active, #contactUsSubtitle:link { font-size: inherit; font-family: inherit; color: inherit; text-decoration: underline; } #tabContainerDiv { float: left; width: 100%; height: 40px; overflow-y: visible; margin: 0px; margin-top: 40px; padding: 0px; border-bottom: 1px solid #AAAAAA; } .tabNormal, .tabNormal:active, .tabNormal:link, .tabNormal:visited { float: left; box-sizing: border-box; width: 30%; height: 100%; padding: 8px; padding-left: 15px; font-size: 14pt; font-family: montserratregular, arial; color: #444444; margin-right: 3%; overflow: hidden; border: 1px solid #AAAAAA; border-bottom: none; cursor: pointer; cursor: hand; overflow: hidden; box-shadow: none; background-color: #FFFFFF; text-shadow: none; } .tabNormal:last-of-type() { margin-right: 0px; border: 1px solid #FF0000; } .tabSelected, .tabSelected:active, .tabSelected:link, .tabSelected:visited { height: calc(100% + 1px); overflow: hidden; box-shadow: 5px 5px 8px #DDDDDD; box-shadow: none; background-color: #F5F5F5; background-image: url('https://images.fineartamerica.com/public/assets/images/BackgroundTextureGray.gif'); background-image: none; text-shadow: none; } .artistHeadshot { display: inline-block; width: 10%; border: none; border-radius: 2px; box-shadow: 0px 5px 8px -5px #CCCCCC; margin-bottom: 15px; } #supportticketform label { display: inline-block; width: 100%; margin-bottom: 5px; font-size: 10pt; font-family: helvetica, avenir, arial; color: #444444; } #selectTicketType { display: inline-block; box-sizing: border-box; width: 100%; max-width: 500px; padding: 5px; font-size: 12pt; font-family: arial; border: 1px solid #AAAAAA; } .textboxshadow { display: inline-block; box-sizing: border-box; width: 100%; max-width: 500px; padding: 5px; font-size: 12pt; font-family: arial; border: 1px solid #AAAAAA; } textarea { float: left; font: 10pt arial; border: 1px solid #AAAAAA; box-shadow: none; } .contactUsInputSection { display: inline-block; width: 100%; margin-top: 20px; } #inputSectionSupportTicketType { margin-top: 0px; margin-bottom: 10px; } #inputSectionFullName { width: 45%; max-width: 240px; margin-right: 15px; } #inputSectionEmail { width: 45%; max-width: 240px; } .ghostButton, .ghostButton:link, .ghostButton:active, .ghostButton:visited, .ghostButton:hover { display: inline-block; vertical-align: middle; text-align: center; font-size: 14pt; font-family: cabin, oswald, arial; text-transform: none, uppercase; color: #444444; border: 1px solid #CCCCCC; border-radius: 0px; padding: 8px; padding-left: 15px; padding-right: 15px; background-color: #FFFFFF; letter-spacing: 0px; word-spacing: 0px; text-decoration: none; } .ghostButton:hover { color: #FFFFFF; background-color: rgba(106,201,157,0.90); border: 1px solid rgba(106,201,157,0.90); border-radius: 2px; } #faqsearchterm { float: none; display: inline-block; box-sizing: border-box; vertical-align: middle; width: calc(100% - 100px); max-width: 500px; padding: 5px; margin-right: 10px; font-size: 14pt; font-family: arial; color: #000000; border: 1px solid #AAAAAA; border-radius: 0px; } #faqsearchterm::placeholder { color: #999999; } #searchButtonContainer { display: inline-block; vertical-align: middle; } #searchButton { padding: 4px; padding-left: 15px; padding-right: 15px; } #foregroundDiv { position: fixed; z-index: 5001; left: 0px; top: 0px; overflow: auto; padding: 0px; background-color: #FAFAFA; visibility: hidden; text-align: center; overflow: hidden; } #closeForegroundXImage { display: none; position: fixed; max-width: 25px; top: 15px; right: 15px; z-index: 6000; } #backgroundDiv { position: fixed; z-index: 5000; left: 0px; top: 0px; width: 10px; height: 10px; background-color: #000000; visibility: hidden; opacity: 0.90; filter: alpha(opacity=90); } #chatButtonContainerDiv { display: none; width: 100%; margin-top: 30px; margin-bottom: 0px; text-align: center; } #chatButton { display: inline-block; box-sizing: border-box; max-width: 300px; padding: 10px; padding-left: 25px; padding-right: 25px; font-size: 16pt; font-family: montserratregular, arial; text-transform: uppercase; color: #444444; border: 1px solid #AAAAAA; border-radius: 2px; background-color: #FAFAFA; box-shadow: 0px 12px 5px -8px #EEEEEE; } #chatButton:hover { color: #FFFFFF; border-color: #80B83B; background-color: #80B83B; } #chatImage { display: inline-block; vertical-align: middle; margin-top: 5px; } #chatSpan { margin-left: 15px; font-size: inherit; font-family: inherit; color: inherit; text-transform: uppercase; } @media screen and (max-width: 800px) { #tabContainerDiv { height: 50px; } .tabNormal, .tabNormal:active, .tabNormal:link, .tabNormal:visited { font-size: 9pt; } #inputSectionFullName { width: 100%; max-width: 100%; margin-right: 0px; } #inputSectionEmail { width: 100%; max-width: 100%; } .artistHeadshot { width: 22%; } } @media screen and (max-width: 640px) { #faqsearchterm { width: 100%; margin-right: 0px; } #searchButtonContainer { width: 100%; margin-top: 10px; text-align: center; } } </style> </head> <body style='background-color: #FFFFFF; background-image: none; text-align: center;'> <!-- Google Tag Manager --> <script nonce='' type='text/javascript'> window.dataLayer = window.dataLayer || []; window.dataLayer.push({'visitorType': 'newVisitor'}); window.dataLayer.push({'experimentId': 'experimentNewVisitorDiscountScrollUpYes'}); </script> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-NFNR3KC" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script nonce=''>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NFNR3KC');</script> <!-- End Google Tag Manager --> <!-- Facebook Pixel Code --> <script nonce=''> !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window, document,'script','https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '441380347490695'); fbq('track', "PageView");</script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=441380347490695&ev=PageView&noscript=1" alt='Facebook' title='Facebook' /></noscript> <!-- End Facebook Pixel Code --> <!-- Optimizely <script type='text/javascript' src='//cdn.optimizely.com/js/10849813427.js'></script> End Optimizely --> <link rel='stylesheet' type='text/css' href='/css/headers/headerPixels2020.css?v=8241b3c680'> <div id='headerAnnouncementDiv' style='min-width: 100%; background-color: #283038;'> <div class='container' style='padding-top: 8px; padding-bottom: 8px; text-align: center;'> <p style='font-size: 10pt; font-family: cabin, oswald, arial; color: #999999; letter-spacing: 0.5px; word-spacing: 1px;'>Looking for design inspiration?&nbsp;&nbsp;&nbsp;Browse our <a href='/collectiongroups' style='font-size: inherit; font-family: inherit; color: #EEEEEE; text-decoration: none;'>curated collections</a>!</p> </div> </div> <header id='headercontainerdiv'> <div class='container'> <div id='header'> <div id='headerLogoDiv'> <a href='/'><img src='/assets/images/logos/logoPixelsBlack2020.png' style='display: inline-block; vertical-align: middle; max-width: 52px; margin-top: -2px;' alt='Pixels' title='Pixels'></a> <a id='headerLogoCompanyName' href='/' alt='Pixels' title='Pixels'>PIXELS</a> </div> <div id='searchFormHeaderContainerDiv' data-filters-set='0'> <form id='searchFormHeader' name='searchFormHeader' class='' method='post' data-num-filters='0' action='https://pixels.com/shop'> <input type='hidden' class='searchType' name='searchType' value = "keywords"> <button type='button' id='headerSearchTypeDiv' tabindex='0'> <p class='searchTypeName' style='float: none; display: inline-block; vertical-align: middle; font-size: 8pt; font-family: montserratlight, arial; color: #666666; text-decoration: none; line-height: 100%;'>Keyword</p> <img src='/images/ArrowDownVTransparent.png' style='display: inline-block; vertical-align: middle; padding-left: 2px; max-width: 11px; max-height: 8px;' alt='Navigation Down Arrow' title='Navigation Down Arrow'> </button> <input type='text' id='searchFormHeaderInput' name='searchtag' data-flag-search-input='1' data-container-id='searchFormHeader' value="" placeholder='Search' title='Search' autocomplete='off' autocapitalize='off'> <button type='button' id='searchFormHeaderImageMagnifyingGlassLink'><img id='searchFormHeaderImageMagnifyingGlass' src='/assets/images/LogoSearchMagnifyingGlass.png' alt='Search' title='Search'></button> <div id='searchTypeOptionsHeader' class='searchTypeOptionsContainer' style='position: absolute; top: -1px; left: -1px; width: 85px; z-index: 5000000; text-align: center; background-color: #FFFFFF; border: 1px solid #999999; display: none;'> <button type='button' class='headerButtonSearchType' data-search-type='keywords' data-display-search-type='Keyword' style='float: left; box-sizing: border-box; width: 100%; min-height: 30px; padding: 8px; font: 8pt arial; text-decoration: none; text-align: left;'>Keyword</button> <button type='button' class='headerButtonSearchType' data-search-type='artistname' data-display-search-type='Artist' style='float: left; box-sizing: border-box; width: 100%; min-height: 30px; padding: 8px; font: 8pt arial; text-decoration: none; text-align: left;'>Artist</button> <button type='button' class='headerButtonSearchType' data-search-type='keywordsartistname' data-display-search-type='Key + Artist' style='float: left; box-sizing: border-box; width: 100%; min-height: 30px; padding: 8px; font: 8pt arial; text-decoration: none; text-align: left;'>Keyword + Artist</button> <button type='button' class='headerButtonSearchType' data-search-type='title' data-display-search-type='Title' style='float: left; box-sizing: border-box; width: 100%; min-height: 30px; padding: 8px; font: 8pt arial; text-decoration: none; text-align: left;'>Title</button> <button type='button' class='headerButtonSearchType' data-search-type='titleartistname' data-display-search-type='Title + Artist' style='float: left; box-sizing: border-box; width: 100%; min-height: 30px; padding: 8px; font: 8pt arial; text-decoration: none; text-align: left;'>Title + Artist</button> </div> </form> <div id='headerSearchFiltersContainerDiv'> </div> </div> <div id='headerMainLinksContainer'> <a id='headerNavigationShopLink' class='headerNavigationLinks' data-showarrow='1' data-targetMenuId='menuShop' href='/shop'>Shop</a> <a id='headerNavigationCreateLink' class='headerNavigationLinks' href='/custom'>Create</a> <a id='headerNavigationSellLink' class='headerNavigationLinks' onmouseover="mclose()" href='/sell-art-online'>Sell</a> <div id='headerNavigationDiscoverDiv'> <a id='headerNavigationDiscoverLink2' class='headerNavigationLinks' data-targetMenuId='menuDiscover' href="/collectiongroups" style='position: relative;'>Discover<img id='discoverArrow' src='/assets/images/ArrowBlueRight.gif' alt='View Collections' title='View Collections'></a> <div id='menuDiscover' class='fullWidthDropDownMenu menuVerticalOffset' style='left: 0px; right: auto; width: 200px;'> <div class='headernavigationmenutextdiv' style='min-width: 100%; padding: 0px; margin-bottom: 0px;'> <ul class='headernavigationmenutextlist' style='padding-top: 0px;'> <li><a href='/artistdirectory'>Featured Artists</a></li> <li><a href='/collectiongroups'>Featured Collections</a></li> <li><a href='/overview/brands'>Featured Brands</a></li> </ul> </div> </div> </div> <button type='button' id='headerNavigationSearchLink'><img id='headerNavigationSearchIcon' data-showarrow='1' src='/assets/images/LogoSearchMagnifyingGlass.png' width='26' height='26' alt='Search' title='Search'></button> </div> <div id='headerShoppingCartDivNew'> <a href='/shoppingcart.html' rel='nofollow'><img src='https://images.fineartamerica.com/public/images/IconShoppingCart2015.png' style='display: inline-block; max-width: 25px; max-height: 25px; margin-right: 5px; border: none; vertical-align: middle;' alt='Shopping Cart Icon' title='View Shopping Cart'></a> <a id='shoppingCartCounter' href='/shoppingcart.html' style='display: none; position: absolute; top: -8px; right: 0px; padding: 3px; padding-right: 6px; padding-left: 6px; border-radius: 2px; background-color: #445577; color: #FFFFFF; text-shadow: 1px 1px 2px #444444; text-align: center;'>0</a> </div> </div> </div> </header> <nav id='headernavigationcontainerdiv' aria-label='Main Navigation'> <div id='mobileNavigationBackgroundDiv'> &nbsp; </div> <div id='mobileNavigationDiv'> <div id='mobileNavigationInnerDiv'> <div id='mobileNavigationMenuMain' class='mobileNavigationListContainer' style='display: inline-block;'> <div class='mobileNavigationBackDiv'> <button type='button' id='mobileNavigationButtonHome' class='mobileNavigationButtonBack headerButtonGoToUrl' data-target-url='/'>Home</button> <button type='button' class='mobileNavigationButtonX'>&#xe014;</button> </div> <form id='mobileNavigationSearchForm' class='' method='post' action='https://pixels.com/shop'> <div id='mobileNavigationSearchTypeDiv' class='mobileNavigationElementContainer'> <button type='button' id='mobileNavigationSelectedSearchType' class='mobileNavigationHeader'> <div class='mobileNavigationHeaderTextDiv'> <span class='mobileNavigationHeaderTitle'>Search Type</span> <span id='mobileNavigationSearchTypeName' class='mobileNavigationHeaderValue'>Keyword</span> </div> </button> <div class='mobileNavigationOptionsDiv'> <button type='button' id='mobileNavigationSearchType-keywords' class='mobileNavigationOption mobileNavigationOptionSelected' data-search-type='keywords'>Keyword</button> <button type='button' id='mobileNavigationSearchType-title' class='mobileNavigationOption' data-search-type='title'>Title</button> <button type='button' id='mobileNavigationSearchType-artistname' class='mobileNavigationOption' data-search-type='artistname'>Artist</button> <button type='button' id='mobileNavigationSearchType-titleartistname' class='mobileNavigationOption' data-search-type='titleartistname'>Title + Artist</button> <button type='button' id='mobileNavigationSearchType-keywordsartistname' class='mobileNavigationOption' data-search-type='keywordsartistname'>Keyword + Artist</button> </div> </div> <input type='hidden' id='mobileNavigationSearchType' name='searchType' value='keywords'> <div id='mobileNavigationCustomSearchInputContainerDiv'> <input type='text' id='mobileNavigationSearchInput' name='searchtag' data-flag-search-input='1' data-container-id='mobileNavigationSearchForm' value="" placeholder='Search' title='Search' autocomplete='off' autocapitalize='off'> <button type='button' id='mobileNavigationSearchMagnifyingGlassImageButton'><img id='mobileNavigationSearchMagnifyingGlassImage' src='/assets/images/LogoSearchMagnifyingGlass.png' alt='Search' title='Search'></button> </div> </form> <ul class='mobileNavigationMenuTopList'> <li><button type='button' class='mobileNavigationLinkRightArrow' target-mobile-menu='mobileNavigationMenuShop'>Shop</button></li> <li><button type='button' class='mobileNavigationLinkRightArrow' target-mobile-menu='mobileNavigationMenuCollections'>Discover</button></li> <li><a href="/custom">Create</a></li> <li><a href="/artistdirectory">Artists</a></li> <li><a href="/sell-art-online">Sell</a></li> <li><a href="/nft-merch">NFT Merch</a></li> <li style='display: none;'><button type='button' class='mobileNavigationLinkRightArrow' target-mobile-menu='mobileNavigationMenuTour'>Tour</button></li> <li><button type='button' class='mobileNavigationLinkRightArrow' target-mobile-menu='mobileNavigationMenuCommunity'>Community</button></li> <li style='border-bottom: 1px solid #CCCCCC;'><button type='button' class='mobileNavigationLinkRightArrow' target-mobile-menu='mobileNavigationMenuAbout'>About</button></li> <li style='margin-top: 40px; border-top: 1px solid #CCCCCC;'><a href="/registrationartist.html" rel="nofollow">Join</a></li> <li><button type='button' class='mobileNavigationLinkRightArrow' target-mobile-menu='mobileNavigationMenuLogin'>Sign In</button></li> </ul> </div> <div id='mobileNavigationMenuShop' class='mobileNavigationListContainer'> <div class='mobileNavigationBackDiv'> <button type='button' class='mobileNavigationButtonBack' target-mobile-menu='mobileNavigationMenuMain'>Back</button> <button type='button' class='mobileNavigationButtonX'>&#xe014;</button> </div> <ul class='mobileNavigationMenuTopList'> <li> <a href="/shop">All Products</a> </li> <li> <a href="/wall-art">Wall Art</a> </li> <li> <a href="/home-decor">Home Decor</a> </li> <li> <a href="/tech">Phone Cases</a> </li> <li> <a href="/lifestyle">Lifestyle</a> </li> <li> <a href="/beach">Beach</a> </li> <li> <a href="/apparel">Apparel</a> </li> <li> <button type='button' class='mobileNavigationLinkDownArrow' target-mobile-sub-menu='mobileNavigationSubMenuShopChildStationery'>Greeting Cards & Stationery</button> <ul id='mobileNavigationSubMenuShopChildStationery' class='mobileNavigationMenuSubList'> <li><a href="/shop/greeting+cards">Greeting Cards</a></li> <li><a href="/shop/spiral+notebooks">Spiral Notebooks</a></li> <li><a href="/shop/stickers">Stickers</a></li> </ul> </li> <li> <a href="/shop/face+masks">Face Masks</a> </li> </ul> </div> <div id='mobileNavigationMenuCollections' class='mobileNavigationListContainer'> <div class='mobileNavigationBackDiv'> <button type='button' class='mobileNavigationButtonBack' target-mobile-menu='mobileNavigationMenuMain'>Back</button> <button type='button' class='mobileNavigationButtonX'>&#xe014;</button> </div> <ul class='mobileNavigationMenuTopList'> <li><a href="/artistdirectory">Featured Artists</a></li> <li><a href="/collectiongroups">Curated Collections</a></li> <li><a href="/overview/brands">Featured Brands</a></li> </ul> </div> <div id='mobileNavigationMenuCommunity' class='mobileNavigationListContainer'> <div class='mobileNavigationBackDiv'> <button type='button' class='mobileNavigationButtonBack' target-mobile-menu='mobileNavigationMenuMain'>Back</button> <button type='button' class='mobileNavigationButtonX'>&#xe014;</button> </div> <ul class='mobileNavigationMenuTopList'> <li><a href="/discussions.html" rel="nofollow">Discussions</a></li> <li><a href="/groups.html" rel="nofollow">Groups</a></li> <li><a href="/contests.html" rel="nofollow">Contests</a></li> <li><a href="/upcomingevents.html" rel="nofollow">Events</a></li> </ul> </div> <div id='mobileNavigationMenuLogin' class='mobileNavigationListContainer'> <div class='mobileNavigationBackDiv'> <button type='button' class='mobileNavigationButtonBack' target-mobile-menu='mobileNavigationMenuMain'>Back</button> <button type='button' class='mobileNavigationButtonX'>&#xe014;</button> </div> <ul class='mobileNavigationMenuTopList'> <li><a href="/loginartist.php" rel="nofollow">Artists</a></li> <li><a href="/logingallery.php" rel="nofollow">Galleries</a></li> <li><a href="/logincollector.php" rel="nofollow">Buyers</a></li> </ul> </div> <div id='mobileNavigationMenuAbout' class='mobileNavigationListContainer'> <div class='mobileNavigationBackDiv'> <button type='button' class='mobileNavigationButtonBack' target-mobile-menu='mobileNavigationMenuMain'>Back</button> <button type='button' class='mobileNavigationButtonX'>&#xe014;</button> </div> <ul class='mobileNavigationMenuTopList'> <li><a href="/aboutthissite.html">About Us</a></li> <li><a href="/contactus.html?tab=contactus" rel="nofollow">Contact Us</a></li> <li><a href="/mobile-app">Mobile App</a></li> <li><a href="/landing/print-on-demand-shopify-app.html">Shopify App</a></li> <li><a href="/videos.html?videotype=tvcommercials" rel="nofollow">TV Commercials</a></li> <li><a href="/videos.html?videotype=radiocommercials" rel="nofollow">Radio Commercials</a></li> <li><a href="/moneybackguarantee.html" rel="nofollow">Satisfaction Guarantee</a></li> <li><a href="/tour/overview" rel="nofollow">Take a Tour</a></li> </ul> </div> </div> </div> <div class='container'> <!-- Main Navigation --> <div id='headernavigationdiv'> <div id='headernavigationmenuleftdiv'> <ul class='navigationmenu'> <li id='menuTopThreeLines'> <button id='buttonTopThreeLines' type='button' style='display: block; width: 40px; height: auto;'> <div style='float: left; width: 100%; height: 3px; padding: 0px; overflow: hidden; margin-bottom: 3px; background-color: #FFFFFF; border-radius: 0px;'> Toggle Mobile Navigation Menu </div> <div style='float: left; width: 100%; height: 3px; padding: 0px; overflow: hidden; margin-bottom: 3px; background-color: #FFFFFF; border-radius: 0px;'> &nbsp; </div> <div style='float: left; width: 100%; height: 3px; padding: 0px; overflow: hidden; margin-bottom: 3px; background-color: #FFFFFF; border-radius: 0px;'> &nbsp; </div> </button> </li> <li id='menuTopArt' class='menuNavigationParentListItem' data-targetMenuId='menuArt'> <a href='/wall-art' class='navigationMenuMainLink2020'>Wall Art</a> </li> <li id='menuTopHomeDecor' class='menuNavigationParentListItem' data-targetMenuId='menuHomeDecor'> <a href='/home-decor' class='navigationMenuMainLink2020'>Home</a> </li> <li id='menuTopLifestyle' class='menuNavigationParentListItem' data-targetMenuId='menuLifestyle'> <a href='/lifestyle' class='navigationMenuMainLink2020'>Lifestyle</a> </li> <li id='menuTopBeach' class='menuNavigationParentListItem' data-targetMenuId='menuBeach'> <a href='/beach' class='navigationMenuMainLink2020'>Beach</a> </li> <li id='menuTopTech' class='menuNavigationParentListItem' data-targetMenuId='menuTech2' style='position: relative;'> <a href='/tech' class='navigationMenuMainLink2020'>Tech</a> <div id='menuTech2' class='fullWidthDropDownMenu menuVerticalOffset' style='left: 0px; right: auto; width: 220px;'> <div class='headernavigationmenutextdiv' style='min-width: 100%; padding: 0px; margin-bottom: 0px;'> <ul class='headernavigationmenutextlist' style='padding-top: 0px;'> <li><a href='/shop/iphone+cases'>iPhone Cases</a></li> <li><a href='/shop/galaxy+cases'>Galaxy Cases</a></li> </ul> </div> </div> </li> <li id='menuTopStationery' class='menuNavigationParentListItem' data-targetMenuId='menuStationery2' style='position: relative;'> <a href='/stationery' class='navigationMenuMainLink2020'>Stationery</a> <div id='menuStationery2' class='fullWidthDropDownMenu menuVerticalOffset' style='left: 0px; right: auto; width: 200px;'> <div class='headernavigationmenutextdiv' style='min-width: 100%; padding: 0px; margin-bottom: 0px;'> <ul class='headernavigationmenutextlist' style='padding-top: 0px;'> <li><a href='/shop/greeting+cards'>Greeting Cards</a></li> <li><a href='/shop/spiral+notebooks'>Spiral Notebooks</a></li> <li><a href='/shop/stickers'>Stickers</a></li> </ul> </div> </div> </li> <li id='menuTopApparel' class='menuNavigationParentListItem' data-targetMenuId='menuApparel'> <a href='/apparel' class='navigationMenuMainLink2020'>Apparel</a> </li> <li id='menuTopCollections' class='menuNavigationParentListItem' data-targetMenuId='menuCollections2' style='position: relative;'> <a href='/collectiongroups' class='navigationMenuMainLink2020'>Collections</a> <div id='menuCollections2' class='fullWidthDropDownMenu menuVerticalOffset' style='left: 0px; right: auto; width: 240px;'> <div class='headernavigationmenutextdiv' style='min-width: 100%; padding: 0px; margin-bottom: 0px;'> <ul class='headernavigationmenutextlist' style='padding-top: 0px;'> <li><a href='/collectiongroups'>All Collections</a></li> <li><a href='/collectiongroups?groupType=rooms'>Shop by Room</a></li> <li><a href='/collectiongroups?groupType=housestyles'>Shop by House Style</a></li> <li><a href='/collectiongroups?groupType=interests'>Shop by Personal Interests</a></li> <li><a href='/collectiongroups?groupType=holidays'>Shop for Holidays</a></li> <li><a href='/subjects'>Shop by Subject</a></li> <li style='padding-top: 10px; margin-top: 10px; border-top: 1px solid #CCCCCC;'><a href='/artistdirectory'>Featured Artists</a></li> <li><a href='/overview/brands'>Featured Brands</a></li> <li style='margin-top: 10px; border-top: 1px solid #CCCCCC;'><a class='headerNavigationButton' href='/collectiongroups'>View All Collections</a></li> </ul> </div> </div> </li> <li id='menuTopSubjects' class='menuNavigationParentListItem' data-targetMenuId='menuSubjects2' style='position: relative;'> <a href='/subjects' class='navigationMenuMainLink2020'>Subjects</a> <div id='menuSubjects2' class='fullWidthDropDownMenu menuVerticalOffset' style='left: 0px; right: auto; width: 200px;'> <div class='headernavigationmenutextdiv' style='min-width: 100%; padding: 0px; margin-bottom: 0px;'> <ul class='headernavigationmenutextlist' style='padding-top: 0px;'> <li><a href='/art/abstract'>Abstracts</a></li> <li><a href='/art/animal'>Animals</a></li> <li><a href='/art/celebrity'>Celebrities</a></li> <li><a href='/art/city'>Cities</a></li> <li><a href='/art/fantasy'>Fantasy</a></li> <li><a href='/art/flower'>Flowers</a></li> <li><a href='/art/impressionism'>Impressionism</a></li> <li><a href='/art/landscape'>Landscapes</a></li> <li><a href='/art/music'>Music</a></li> <li><a href='/art/pattern'>Patterns</a></li> <li><a href='/art/science+fiction'>Science Fiction</a></li> <li><a href='/art/skyline'>Skylines</a></li> <li><a href='/art/sunset'>Sunsets</a></li> <li><a href='/art/wine'>Wine</a></li> <li style='margin-top: 10px; border-top: 1px solid #CCCCCC;'><a class='headerNavigationButton' href='/subjects'>View All Subjects</a></li> </ul> </div> </div> </li> <li id='menuTopArtists' class='menuNavigationParentListItem' data-targetMenuId='menuArtists' style='position: relative;'> <a href='/artistdirectory' class='navigationMenuMainLink2020'>Artists</a> <div id='menuArtists' class='fullWidthDropDownMenu menuVerticalOffset' style='left: 0px; right: auto; width: 260px;'> <div class='headernavigationmenutextdiv' style='min-width: 100%; padding: 0px; margin-bottom: 0px;'> <ul class='headernavigationmenutextlist' style='padding-top: 0px;'> <li style='padding-bottom: 5px; margin-bottom: 8px; border-bottom: 1px solid #CCCCCC; font-size: 9pt; font-family: avenir, arial; text-transform: uppercase;'>This Month's Featured Artists</li> <li><a href='/profiles/scott-listfield'>Scott Listfield</a></li> <li><a href='/profiles/linda-woods'>Linda Woods</a></li> <li><a href='/profiles/iris-scott'>Iris Scott</a></li> <li><a href='/profiles/brianbuckley'>Brian Buckley</a></li> <li><a href='/profiles/tithi-luadthong'>Tithi Luadthong</a></li> <li><a href='/profiles/guido-borelli'>Guido Borelli</a></li> <li><a href='/profiles/soosh'>Soosh</a></li> <li><a href='/profiles/amy-hamilton'>Amy Hamilton</a></li> <li><a href='/profiles/ruben-ireland'>Ruben Ireland</a></li> <li><a href='/profiles/will-bullas'>Will Bullas</a></li> <li><a href='/profiles/elisabeth-fredriksson'>Elisabeth Fredriksson</a></li> <li><a class='headerNavigationButton' href='/artistdirectory' style='padding: 10px; margin-top: 20px; border-radius: 2px; box-shadow: 0px 8px 5px -5px #EEEEEE;'>View All 1+ Million Artists</a></li> </ul> </div> </div> </li> </ul> </div> <div id='headernavigationmenurightdiv'> <ul class='navigationmenu navigationmenuright'> <li id='menuTopLogin' class='menuNavigationParentListItem' data-targetMenuId='menuLogin' style='float: right; position: relative;'> <a href='/loginchoosetype.php' class='navigationMenuMainLink2020' rel='nofollow'>Sign In</a> <div id='menuLogin' class='fullWidthDropDownMenu menuVerticalOffset' style='left: auto; right: 0px; padding: 15px; width: 200px;'> <div class='headernavigationmenutextdiv' style='min-width: 100%; padding: 0px; margin-bottom: 0px;'> <ul class='headernavigationmenutextlist' style='padding-top: 0px;'> <li><a href='/loginartist.php' rel='nofollow'>Artists / Photographers</a></li> <li><a href='/logingallery.php' rel='nofollow'>Galleries</a></li> <li><a href='/logincollector.php' rel='nofollow'>Collectors</a></li> </ul> </div> </div> </li> <li id='menuTopJoin' style='float: right;'> <a href='/openanaccount.html' class='navigationMenuMainLink2020' rel='nofollow' style='background-image: none; vertical-align: top;' onmouseover='mclose();'>Join</a> </li> <li id='menuTopCommunityRight2' class='menuNavigationParentListItem' data-targetMenuId='menuCommunity2'> <a href='/discussions.html' class='navigationMenuMainLink2020'>Community</a> <div id='menuCommunity2' class='fullWidthDropDownMenu menuVerticalOffset' style='left: 0px; right: auto; width: 200px;'> <div class='headernavigationmenutextdiv' style='min-width: 100%; padding: 0px; margin-bottom: 0px;'> <ul class='headernavigationmenutextlist' style='padding-top: 0px;'> <li><a href='/discussions.html'>Discussions</a></li> <li><a href='/groups.html'>Groups</a></li> <li><a href='/contests.html'>Contests</a></li> <li><a href='/upcomingevents.html' rel='nofollow'>Events</a></li> <li><a href='/activity.html' rel='nofollow'>Activity</a></li> <li style='padding-top: 20px; margin-top: 20px; border-top: 1px solid #CCCCCC;'><a href='/artistdirectory'>Independent Artists</a></li> <li><a href='/overview/brands'>Businesses & Brands</a></li> </ul> </div> </div> </li> </ul> </div> <div id='headerarrow' style='position: absolute; z-index: 2001; top: -24px; width: 47px; height: 24px; overflow: hidden; visibility: hidden;'><img src='/assets/images/HeaderVerticalArrowAccentTransparent.png' style='float: left; border: none;' width='47' height='24' alt='Navigation Menu Up Arrow' title='Navigation Menu Up Arrow'></div> <!-- Dropdown Menu: Art --> <div id='menuArt' class='fullWidthDropDownMenu menuVerticalOffset menuNavigationOutsideListDiv'> <div style='float: left; width: 100%; padding-top: 0px; text-align: justify;'> <!-- Wall Art --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/wall-art'>Wall Art</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/framed+prints'>Framed Prints</a></li> <li><a href='/shop/canvas+prints'>Canvas Prints</a></li> <li><a href='/shop/metal+prints'>Metal Prints</a></li> <li><a href='/shop/acrylic+prints'>Acrylic Prints</a></li> <li><a href='/shop/wood+prints'>Wood Prints</a></li> <li><a href='/shop/prints'>Art Prints</a></li> <li><a href='/shop/posters'>Posters</a></li> <li><a href='/shop/tapestries'>Tapestries</a></li> <li><a href='/shop/originals'>Originals</a></li> </ul> </div> <!-- Media --> <div class='headernavigationmenutextdiv'> <div> <p>Art Media</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/art/paintings'>Paintings</a></li> <li><a href='/art/photographs'>Photographs</a></li> <li><a href='/art/drawings'>Illustrations / Drawings</a></li> <li><a href='/art/digital+art'>Digital Art</a></li> <li><a href='/art/mixed+media'>Mixed Media</a></li> </ul> </div> <!-- Rooms --> <div class='headernavigationmenutextdiv'> <div> <p>Rooms</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/collectiongroups/living+room'>Living Room</a></li> <li><a href='/collectiongroups/kitchen'>Kitchen</a></li> <li><a href='/collectiongroups/master+bedroom'>Master Bedroom</a></li> <li><a href='/collectiongroups/home+theater'>Home Theater</a></li> <li><a href='/collectiongroups/boys+room'>Boy's Bedroom</a></li> <li><a href='/collectiongroups/girls+room'>Girl's Bedroom</a></li> <li><a href='/collectiongroups/babys+room'>Nursery / Baby's Room</a></li> </ul> </div> <!-- House Styles --> <div class='headernavigationmenutextdiv'> <div> <p>House Styles</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/collectiongroups/beach'>Beach House</a></li> <li><a href='/collectiongroups/contemporary'>Contemporary</a></li> <li><a href='/collectiongroups/modern'>Modern</a></li> <li><a href='/collectiongroups/cabin'>Rustic Cabin</a></li> <li><a href='/collectiongroups/southwest'>Southwest</a></li> <li><a href='/collectiongroups/bachelor+pad'>Bachelor Pad</a></li> <li><a href='/collectiongroups/big+city'>City Condo / Apartment</a></li> <li><a class='headerNavigationButton' href='/collectiongroups?groupType=housestyles'>View All House Styles</a></li> </ul> </div> <!-- Subjects --> <div class='headernavigationmenutextdiv'> <div> <p>Subjects</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/art/abstract'>Abstracts</a></li> <li><a href='/art/animal'>Animals</a></li> <li><a href='/art/celebrity'>Celebrities</a></li> <li><a href='/art/city'>Cities</a></li> <li><a href='/art/flower'>Flowers</a></li> <li><a href='/art/landscape'>Landscapes</a></li> <li><a href='/art/music'>Music</a></li> <li><a href='/art/sunset'>Sunsets</a></li> <li><a class='headerNavigationButton' href='/subjects'>View All Subjects</a></li> </ul> </div> <div style='display: inline-block; width: 100%;'> &nbsp; </div> </div> </div> <!-- Dropdown Menu: Home Decor --> <div id='menuHomeDecor' class='fullWidthDropDownMenu menuVerticalOffset menuNavigationOutsideListDiv'> <div style='float: left; width: 100%; padding-top: 0px; text-align: justify;'> <!-- Home Decor --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/home-decor'>Home Decor</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/throw+pillows'>Throw Pillows</a></li> <li><a href='/shop/fleece+blankets'>Fleece Blankets</a></li> <li><a href='/shop/duvet+covers'>Duvet Covers</a></li> <li><a href='/shop/shower+curtains'>Shower Curtains</a></li> <li><a href='/shop/ornaments'>Holiday Ornaments<sup>NEW</sup></a></li> </ul> </div> <!-- Bathroom --> <div class='headernavigationmenutextdiv'> <div> <p>Bath</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/hand+towels'>Hand Towels</a></li> <li><a href='/shop/bath+towels'>Bath Towels</a></li> <li><a href='/shop/bath+sheets'>Bath Sheets</a></li> <li><a href='/shop/shower+curtains'>Shower Curtains</a></li> </ul> </div> <!-- Kitchen --> <div class='headernavigationmenutextdiv'> <div> <p>Kitchen</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/coffee+mugs'>Coffee Mugs</a></li> <li><a href='/shop/hand+towels'>Hand Towels</a></li> </ul> </div> <!-- Tote Bags --> <div class='headernavigationmenutextdiv'> <div> <p>Bags & Pouches</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/tote+bags'>Tote Bags</a></li> <li><a href='/shop/weekender+tote+bags'>Weekender Tote Bags</a></li> <li><a href='/shop/pouches'>Zip Pouches</a></li> </ul> </div> <div style='display: inline-block; width: 100%;'> &nbsp; </div> </div> </div> <!-- Dropdown Menu: Lifestyle --> <div id='menuLifestyle' class='fullWidthDropDownMenu menuVerticalOffset menuNavigationOutsideListDiv'> <div style='float: left; width: 100%; text-align: justify;'> <div class='headernavigationmenutextdiv'> <div> <p>Bags & Pouches</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/tote+bags'>Tote Bags</a></li> <li><a href='/shop/weekender+tote+bags'>Weekender Tote Bags</a></li> <li><a href='/shop/pouches'>Carry-All Pouches</a></li> </ul> </div> <div class='headernavigationmenutextdiv'> <div> <p>Athletics</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/puzzles'>Jigsaw Puzzles<sup>NEW</sup></a></li> <li><a href='/shop/yoga+mats'>Yoga Mats</a></li> <li><a href='/shop/beach+towels'>Towels</a></li> <li><a href='/shop/tshirts'>Men's T-Shirts</a></li> <li><a href='/shop/womens+tshirts'>Women's T-Shirts</a></li> </ul> </div> <div class='headernavigationmenutextdiv'> <div> <p><a href='/beach'>Beach</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/beach+towels'>Beach Towels</a></li> <li><a href='/shop/beach+sheets'>Beach Sheets</a></li> <li><a href='/overview/round-beach-towels'>Round Beach Towels</a></li> </ul> </div> <!-- Mugs --> <div class='headernavigationmenutextdiv'> <div> <p>Mugs</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/coffee+mugs'>Coffee Mugs</a></li> </ul> </div> <div style='display: inline-block; width: 100%;'> &nbsp; </div> </div> </div> <!-- Dropdown Menu: Beach --> <div id='menuBeach' class='fullWidthDropDownMenu menuVerticalOffset menuNavigationOutsideListDiv'> <div style='float: left; width: 100%; text-align: center;'> <div class='headernavigationmenutextdiv'> <div> <p><a href='https://pixels.com/shop/round+beach+towels'>Beach Towels</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='https://pixels.com/shop/beach+towels'>Beach Towels</a></li> <li><a href='https://pixels.com/shop/beach+sheets'>Beach Sheets</a></li> <li><a href='https://pixels.com/overview/round-beach-towels'>Round Beach Towels</a></li> </ul> </div> <div class='headernavigationmenutextdiv'> <div> <p><a href='https://pixels.com/shop/weekender+tote+bags'>Tote Bags</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='https://pixels.com/shop/weekender+tote+bags'>Weekender Tote Bags</a></li> <li><a href='https://pixels.com/shop/tote+bags'>Tote Bags</a></li> <li><a href='https://pixels.com/shop/pouches'>Carry-All Pouches</a></li> </ul> </div> </div> </div> <!-- Dropdown Menu: Tech --> <div id='menuTech' class='fullWidthDropDownMenu menuVerticalOffset menuNavigationOutsideListDiv'> <div style='float: left; width: 100%; text-align: justify;'> <div style='float: left; width: 100%; text-align: center;'> <a class='buttonheadernavigationmenuclose' href="javascript: closeoverride('menuTech');" style='margin-top: 5px;'>Close</a> <p style='float: left; width: 50px; overflow: hidden; padding-top: 0px; font: 9pt arial;'>&nbsp;</p> <div class='headernavigationmenutextdiv'> <div> <p><a href='/shop/iphone+cases'>Phone Cases</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/iphone+cases'>iPhone Cases</a></li> <li><a href='/shop/galaxy+cases'>Galaxy Cases</a></li> </ul> </div> </div> </div> </div> <!-- Dropdown Menu: Apparel --> <div id='menuApparel' class='fullWidthDropDownMenu menuVerticalOffset menuNavigationOutsideListDiv'> <div style='float: left; width: 100%; text-align: center;'> <div class='headernavigationmenutextdiv'> <div> <p>Men's Apparel</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/tshirts'>Men's T-Shirts</a></li> <li><a href='/shop/vneck+tshirts'>V-Neck T-Shirts</a></li> <li><a href='/shop/long+sleeve+tshirts'>Long Sleeve T-Shirts</a></li> <li><a href='/shop/sweatshirts'>Sweatshirts / Hoodies</a></li> <li><a href='/shop/face+masks'>Face Masks</a></li> </ul> </div> <!-- Women's Clothing --> <div class='headernavigationmenutextdiv'> <div> <p>Women's Apparel</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/womens+tshirts'>Women's T-Shirts</a></li> <li><a href='/shop/womens+vneck+tshirts'>Women's V-Neck T-Shirts</a></li> <li><a href='/shop/womens+tank+tops'>Women's Tank Tops</a></li> <li><a href='/shop/tote+bags'>Tote Bags</a></li> <li><a href='/shop/face+masks'>Face Masks</a></li> </ul> </div> <!-- Youth Clothing --> <div class='headernavigationmenutextdiv'> <div> <p>Kid's Apparel</p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/kids+tshirts'>Kid's T-Shirts</a></li> <li><a href='/shop/toddler+tshirts'>Toddler T-Shirts</a></li> <li><a href='/shop/baby+onesies'>Baby Onesies</a></li> </ul> </div> </div> </div> <!-- Dropdown Menu: Shop --> <div id='menuShop' class='fullWidthDropDownMenu menuNavigationOutsideListDiv'> <div style='float: left; width: 100%; padding-top: 0px; text-align: justify;'> <!-- Wall Art --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/wall-art'>Wall Art</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/canvas+prints'>Canvas Prints</a></li> <li><a href='/shop/framed+prints'>Framed Prints</a></li> <li><a href='/shop/metal+prints'>Metal Prints</a></li> <li><a href='/shop/acrylic+prints'>Acrylic Prints</a></li> <li><a href='/shop/wood+prints'>Wood Prints</a></li> <li><a href='/shop/prints'>Art Prints</a></li> <li><a href='/shop/posters'>Posters</a></li> <li><a href='/shop/tapestries'>Tapestries</a></li> <li><a href='/shop/originals'>Original Artwork</a></li> </ul> </div> <!-- Art Media --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/wall-art'>Art Media</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/art/paintings'>Paintings</a></li> <li><a href='/art/photographs'>Photographs</a></li> <li><a href='/art/drawings'>Drawings</a></li> <li><a href='/art/digital+art'>Digital Art</a></li> <li><a href='/art/mixed+media'>Mixed Media</a></li> </ul> </div> <!-- Home Decor --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/home-decor'>Home Decor</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/throw+pillows'>Throw Pillows</a></li> <li><a href='/shop/fleece+blankets'>Fleece Blankets</a></li> <li><a href='/shop/duvet+covers'>Duvet Covers</a></li> <li><a href='/shop/shower+curtains'>Shower Curtains</a></li> <li><a href='/shop/hand+towels'>Hand Towels</a></li> <li><a href='/shop/bath+towels'>Bath Towels</a></li> <li><a href='/shop/bath+sheets'>Bath Sheets</a></li> <li><a href='/shop/coffee+mugs'>Coffee Mugs</a></li> <li><a href='/shop/ornaments'>Holiday Ornaments<sup>NEW</sup></a></li> </ul> </div> <!-- Lifestyle --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/lifestyle'>Lifestyle</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/yoga+mats'>Yoga Mats</a></li> <li><a href='/shop/tote+bags'>Tote Bags</a></li> <li><a href='/shop/weekender+tote+bags'>Weekender Tote Bags</a></li> <li><a href='/shop/pouches'>Carry-All Pouches</a></li> <li><a href='/shop/iphone+cases'>iPhone Cases</a></li> <li><a href='/shop/galaxy+cases'>Galaxy Cases</a></li> <li><a href='/shop/puzzles'>Jigsaw Puzzles<sup>NEW</sup></a></li> </ul> </div> <!-- Beach --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/beach'>Beach</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/overview/round-beach-towels'>Round Beach Towels</a></li> <li><a href='/shop/beach+towels'>Beach Towels</a></li> <li><a href='/shop/weekender+tote+bags'>Weekender Tote Bags</a></li> <li><a href='/shop/tote+bags'>Tote Bags</a></li> <li><a href='/shop/pouches'>Carry-All Pouches</a></li> </ul> </div> <!-- Beach --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/tech'>Tech</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/iphone+cases'>iPhone Cases</a></li> <li><a href='/shop/galaxy+cases'>Galaxy Cases</a></li> </ul> </div> <!-- Men's Apparel --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/apparel'>Men's Apparel</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/tshirts'>Men's T-Shirts</a></li> <li><a href='/shop/tank+tops'>Men's Tank Tops</a></li> <li><a href='/shop/long+sleeve+tshirts'>Men's Long Sleeve T-Shirts</a></li> <li><a href='/shop/sweatshirts'>Sweatshirts / Hoodies</a></li> <li><a href='/shop/face+masks'>Face Masks</a></li> </ul> </div> <!-- Women's Apparel --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/apparel'>Women's Apparel</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/womens+tshirts'>Women's T-Shirts</a></li> <li><a href='/shop/womens+tank+tops'>Women's Tank Tops</a></li> <li><a href='/shop/sweatshirts'>Sweatshirts / Hoodies</a></li> <li><a href='/shop/face+masks'>Face Masks</a></li> </ul> </div> <!-- Youth Apparel --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/apparel'>Youth Apparel</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/kids+tshirts'>Kid's T-Shirts</a></li> <li><a href='/shop/toddler+tshirts'>Toddler T-Shirts</a></li> <li><a href='/shop/baby+onesies'>Baby Onesies</a></li> </ul> </div> <!-- Stationery --> <div class='headernavigationmenutextdiv'> <div> <p><a href='/stationery'>Stationery</a></p> </div> <ul class='headernavigationmenutextlist'> <li><a href='/shop/greeting+cards'>Greeting Cards</a></li> <li><a href='/shop/spiral+notebooks'>Spiral Notebooks</a></li> <li><a href='/shop/stickers'>Stickers</a></li> </ul> </div> <!-- Miscellaneous --> <div style='display: inline-block; width: 100%;'> &nbsp; </div> </div> </div> </div> </div> </nav> <script type='text/javascript' nonce=''> function attachHeaderEventHandlers() { // Add event listeners to the drop-down menus. var navigationElements = document.getElementsByClassName('menuNavigationParentListItem'); for(var i = 0; i < navigationElements.length; i ++) { if(navigationElements[i].hasAttribute('data-targetMenuId')) { navigationElements[i].addEventListener('mouseover', menuPreOpen2019); navigationElements[i].addEventListener('keydown', menuKeyPress); navigationElements[i].addEventListener('touchstart', menuToggle2019); navigationElements[i].addEventListener('mouseout', mclosetime); } else { navigationElements[i].addEventListener('mouseover', mclose); } } var targetElement = document.getElementById('headerNavigationDiscoverDiv'); targetElement.addEventListener('mouseover', menuPreOpen2019); targetElement.addEventListener('keydown', menuKeyPress); targetElement.addEventListener('touchstart', menuToggle2019); targetElement.addEventListener('mouseout', mclosetime); // Add event listeners to the drop-down menus. var navigationElements = document.getElementsByClassName('headerNavigationLinks'); for(var i = 0; i < navigationElements.length; i ++) { if(navigationElements[i].id == 'headerNavigationDiscoverLink2') { continue; } if(navigationElements[i].hasAttribute('data-targetMenuId')) { navigationElements[i].addEventListener('mouseover', menuPreOpen2019); navigationElements[i].addEventListener('keydown', menuKeyPress); navigationElements[i].addEventListener('touchstart', menuToggle2019); navigationElements[i].addEventListener('mouseout', mclosetime); } else { navigationElements[i].addEventListener('mouseover', mclose); } } // Add event listeners to the drop-down menus. var navigationElements = document.getElementsByClassName('menuNavigationOutsideListDiv'); for(var i = 0; i < navigationElements.length; i ++) { navigationElements[i].addEventListener('mouseover', mcancelclosetime); navigationElements[i].addEventListener('mouseout', mclosetime); } if(document.getElementById('searchFormHeaderInput')) { document.getElementById('searchFormHeaderInput').addEventListener('focus', function() {headerSearchFocus(event); autoPromptSearchTerms(event);}); document.getElementById('searchFormHeaderInput').addEventListener('keyup', autoPromptSearchTerms); document.getElementById('searchFormHeaderInput').addEventListener('keydown', checkForEnterSearchFormHeader); } if(document.getElementById('mobileNavigationSearchInput')) { document.getElementById('mobileNavigationSearchInput').addEventListener('focus', function() {mobileNavigationSearchFocus(event); autoPromptSearchTerms(event);}); document.getElementById('mobileNavigationSearchInput').addEventListener('keyup', autoPromptSearchTerms); } document.getElementById('mobileNavigationSearchMagnifyingGlassImageButton').addEventListener('click', function() {document.getElementById('mobileNavigationSearchForm').submit()}); // Add event listeners to the drop-down menus. var targetElements = document.getElementsByClassName('headerButtonGoToUrl'); for(var i = 0; i < targetElements.length; i ++) { targetElements[i].addEventListener('click', goToUrl2023); } var targetElements = document.getElementsByClassName('headerButtonSearchType'); for(var i = 0; i < targetElements.length; i ++) { targetElements[i].addEventListener('click', selectSearchType2023); targetElements[i].addEventListener('mouseover', cancelclosetimersearchtypeoptionsheader); } var targetElements = document.getElementsByClassName('mobileNavigationButtonX'); for(var i = 0; i < targetElements.length; i ++) { targetElements[i].addEventListener('click', toggleMobileNavigationDiv); } document.getElementById('mobileNavigationBackgroundDiv').addEventListener('click', toggleMobileNavigationDiv); //document.getElementById('mobileNavigationButtonClose').addEventListener('click', toggleMobileNavigationDiv); var targetElements = document.querySelectorAll('[target-mobile-menu]'); for(var i = 0; i < targetElements.length; i ++) { targetElements[i].addEventListener('click', showMobileMenu2023); } var targetElements = document.querySelectorAll('[target-mobile-sub-menu]'); for(var i = 0; i < targetElements.length; i ++) { targetElements[i].addEventListener('click', toggleMobileSubMenu2023); } document.getElementById('headerSearchTypeDiv').addEventListener('click', function() {showsearchtypeoptionsheader('searchTypeOptionsHeader');}); document.getElementById('searchFormHeaderImageMagnifyingGlassLink').addEventListener('click', function() {document.searchFormHeader.submit()}); document.getElementById('searchTypeOptionsHeader').addEventListener('mouseout', hidesearchtypeoptionstimeheader); document.getElementById('headerNavigationSearchLink').addEventListener('click', function() {toggleMobileNavigationDiv('search');}); document.getElementById('buttonTopThreeLines').addEventListener('click', function() {toggleMobileNavigationDiv();}); document.getElementById('mobileNavigationSelectedSearchType').addEventListener('click', function() {toggleMobileNavigation('mobileNavigationSearchTypeDiv');}); var targetElements = document.getElementsByClassName('mobileNavigationOption'); for(var i = 0; i < targetElements.length; i ++) { targetElements[i].addEventListener('click', selectMobileNavigationSearchType2023); } } if(typeof flagGlobalScriptLoaded != 'undefined') { attachHeaderEventHandlers(); } else { window.addEventListener('globalScriptLoaded', attachHeaderEventHandlers); } </script> <div class='container'> <div style="display: inline-block; width: 100%; min-height: 750px; padding-top: 40px; padding-bottom: 25px; margin: auto; overflow: hidden; text-align: left;"> <h1>Frequently Asked Questions</h1> <p id='contactUsSubtitle'>Start typing your question, below, and we'll instantly try to find an answer for you.</p> <div id='chatButtonContainerDiv'> <a id='chatButton' href="javascript: launchChat();"><img id='chatImage' src='/assets/images/HeaderQuoteTransparent.png'><span id='chatSpan'>Live Chat</span></a> </div> <div id='tabContainerDiv'> <a class='tabNormal' href='/contactus.html?tab=contactus'> Contact Us </a> <a class='tabNormal' href='/contactus.html?tab=discussions'> Meet the Members </a> <a class='tabNormal tabSelected' href='/contactus.html?tab=faq'> FAQ </a> </div> <div style='float: left; box-sizing: border-box; width: 100%; padding: 25px; background-color: #F5F5F5; border: 1px solid #AAAAAA; border-top: none;'> <p style='display: inline-block; width: 100%; font-size: 10pt; font-family: arial;'>Our FAQ search engine really does work!&nbsp;&nbsp;&nbsp;I know what you're thinking... these things never work.&nbsp;&nbsp;&nbsp;Give it a try.&nbsp;&nbsp;&nbsp;You'll have your answer in less than one second:</p> <div style='display: inline-block; width: 100%; padding-top: 25px;'> <form id='faqsearchform' name='faqsearchform' style='display: inline-block; width: 100%;' method='post' action='/contactus.html'> <input id='faqsearchterm' name='faqsearchterm' onkeydown="faqSearchCheckForEnter();" onkeyup='lookupfaqsearchterm(1);' autocomplete='off' placeholder="Start typing here, and watch what happens..." value=""> <p id='searchButtonContainer'><a id='searchButton' class='ghostButton' href='javascript: lookupfaqsearchterm(1);'>Search</a></p> </form> <div id='faqsearchtermresultsdiv' style='display: inline-block; width: 100%; margin-top: 20px;'> <style> .faqNavigationDiv { display: flex; display: -webkit-flex; box-sizing: border-box; width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; align-content: center; -webkit-flex-wrap: wrap; -webkit-justify-content: space-between; -webkit-align-items: center; -webkit-align-content: center; } #faqNavigationDivTop { padding-bottom: 10px; border-bottom: 1px solid #999999; } #faqNavigationDivBottom { padding-top: 10px; margin-top: 15px; border-top: 1px solid #999999; } #resultCount { display: inline-block; vertical-align: middle; font-size: 10pt; font-family: arial; color: #000000; } .pageListDiv { display: inline-block; vertical-align: middle; text-align: right; } .linkPageList, .linkPageList:active, .linkPageList:link, .linkPageList:visited, .linkPageList:hover { display: inline-block; vertical-align: middle; font-size: 10pt; font-color: #444444; margin-left: 10px; } .linkPageNumber, .linkPageNumber:active, .linkPageNumber:link, .linkPageNumber:visited, .linkPageNumber:hover { padding: 5px; padding-top: 2px; padding-bottom: 2px; border: 1px solid transparent; border-radius: 2px; } .linkPageNumberSelected, .linkPageNumberSelected:active, .linkPageNumberSelected:link, .linkPageNumberSelected:visited { border: 1px solid #999999; } @media screen and (max-width: 640px) { #resultCount { width: 100%; text-align: center; } .pageListDiv { width: 100%; margin-top: 10px; text-align: center; } } </style> <div id='faqNavigationDivTop' class='faqNavigationDiv'> <p id='resultCount'>Displaying: 1 - 10 of 67</p><div class='pageListDiv'> <span class='linkPageList linkPageNumber linkPageNumberSelected'>1</span><a class='linkPageList linkPageNumber' rel='' href='javascript: lookupfaqsearchterm(2);'>2</a><a class='linkPageList linkPageNumber' rel='' href='javascript: lookupfaqsearchterm(3);'>3</a><a class='linkPageList linkPageNumber' rel='' href='javascript: lookupfaqsearchterm(4);'>4</a><a class='linkPageList linkPageNumber' rel='' href='javascript: lookupfaqsearchterm(5);'>5</a><a class='linkPageList linkPageNext' rel='next' href='javascript: lookupfaqsearchterm(2);'>Next</a></div> </div> <div style='display: inline-block; width: 100%; margin-top: 20px; margin-bottom: 20px;'> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>1:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(2);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>I made a sale. When will I be paid?</a></p> <p id='faqlink[2]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=2' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[2]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>Pixels has a 30-day return policy. That means that buyers can return their orders to us for a full refund anytime within 30 days after the date of purchase. As a result, we can't pay our members for their sales until that 30 day window expires and we're certain that the orders won't be returned. <br> <br>Payments are sent out on the 15th of each month for all sales that occurred before the 15th of the previous month. For example, on November 15th, we send out payments for all orders that were placed on or before October 15th. <br> <br>Here's a common point of confusion. Let's say that you make a sale on October 17th. Many of our members expect to be paid for that sale on November 15th. That is not correct. <br> <br>In this case, since the order was placed on October 17th, the buyer has until November 17th to return it to us. Therefore, we can't issue a payment on November 15th. <br> <br>This sale would be paid out on December 15th. <br> <br>Again - payments are sent out on the 15th of each month for all sales that occurred before the 15th of the previous month. <br> <br>If you've chosen to be paid by check, please allow 5 - 10 business days for your check to arrive. If you've chosen to be paid by PayPal, your PayPal payment will arrive before the end of the day on the 15th. <br> <br></p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>2:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(6);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>Does Pixels ship worldwide?</a></p> <p id='faqlink[6]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=6' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[6]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>Yes. We ship all over the world. <br> <br>We have <a href='/global-print-on-demand-manufacturing-network.html' target='_blank' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: underline;'>14 manufacturing facilities</a> located in five different countries. <br> <br>If you can receive a package via UPS or FedEx, then we can ship to you!</p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>3:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(7);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>When will my order ship?</a></p> <p id='faqlink[7]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=7' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[7]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>Products require 2 - 8 business days to print and manufacture before shipping, depending on the product. You can see the specific lead time for each product when viewing the product on our website. Products will ship from the <a href='/global-print-on-demand-manufacturing-network.html' target='_blank' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: underline;'>manufacturing facility</a> located nearest to your destination address. <br> <br>Gift cards are delivered instantly via e-mail. <br> <br>Please note - even if you select "overnight" as your shipping method, we still need the time (above) to actually print, assemble, and package your order. Everything at Pixels is printed and manufactured "on demand". We don't have any pre-made products sitting on our shelves.</p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>4:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(11);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>What is your cancellation / return policy?</a></p> <p id='faqlink[11]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=11' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[11]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>Our return policy is very simple: <br> <br><a href='https://pixels.com/moneybackguarantee.html' target='_blank' style='font-size: 11pt; font-family: helvetica, arial; text-decoration: underline;'>https://pixels.com/moneybackguarantee.html</a> <br> <br>If you're not happy with a purchase that you made on Pixels.com, for any reason, you can return it to us within 30 days of the order date. As soon as it arrives, we'll issue a full refund for the entire purchase price. Please note - Pixels does not reimburse the outgoing or return shipping charges unless the return is due to a defect in quality.</p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>5:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(19);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>Where is Pixels located?</a></p> <p id='faqlink[19]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=19' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[19]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>Pixels has production facilities in North Carolina (US), Georgia (US), California (US), and Glasgow (UK). Our corporate headquarters are in Santa Monica, California.</p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>6:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(1);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>Why aren't my images appearing in the search results?</a></p> <p id='faqlink[1]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=1' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[1]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>Our search engine refreshes itself once every 24 hours. If you upload images today, you'll have to wait until tomorrow before you can search for them. <br> <br>Also - please note that the search engine only pays attention to the keywords that you associated with your images... not their titles. Make sure that you have associated appropriate keywords with all of your images... wait 24 hours... and you'll be all set.</p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>7:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(3);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>When I search for my name, why can't I find myself?</a></p> <p id='faqlink[3]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=3' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[3]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>Our search engine refreshes itself once every 24 hours. If you just joined today, you'll have to wait until tomorrow before you can find yourself in the search results.</p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>8:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(4);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>I haven't received my check yet with my profits. How long does it take to receive a check in the mail?</a></p> <p id='faqlink[4]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=4' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[4]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>If you've chosen to receive payments via check (US residents only), checks are mailed out on the 15th of each month for all sales that occurred before the 15th of the previous month. <br> <br>So, on July 15th, we send out checks for all sales that occurred on or before June 15th. If your sale occurred on June 20th, then you missed the cutoff. You'll be paid on August 15th. <br> <br>Our check processing center is located in Arizona. The checks go out via regular USPS mail. Please allow 5 - 10 business days for your check to be delivered to you.</p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>9:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(5);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>Where is my order?</a></p> <p id='faqlink[5]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=5' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[5]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>As soon as your order ships, we'll send you an e-mail confirmation with a tracking number included in the e-mail. We send the e-mail to the e-mail address that you provided when you placed your order. <br> <br>If you want to check on the status of your order at any time, just login to your account here on Pixels and then click on your "Purchases" page. <br> <br>You can login by going here: <br> <br><a href='https://pixels.com/loginchoosetype.php' target='_blank' style='font-size: 11pt; font-family: helvetica, arial; text-decoration: underline;'>https://pixels.com/loginchoosetype.php</a></p> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <div style='display: inline-block; width: 100%; padding-bottom: 5px; border-bottom: 5px;'> <p style='display: inline-block; vertical-align: top; width: 40px; font: 14pt arial;'>10:</p> <p style='display: inline-block; vertical-align: top; width: calc(100% - 120px); font-size: 14pt; font-family: helvetica, arial; color: #444444; text-decoration: underline;'><a href='javascript: displayfaq(8);' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: inherit;'>Can I get a discount for a bulk purchase?</a></p> <p id='faqlink[8]' style='display: none; vertical-align: top; font-size: 10pt; font-family: arial;'><a href='/faqlinks.html?id=8' rel='nofollow' target='_blank' style='font: 10pt arial; color: #335599; text-decoration: underline;'>Share Link</a></p> </div> <div id='faq[8]' style='display: none; width: 100%; padding-top: 20px; padding-bottom: 25px; margin-top: 20px; border-top: 1px solid #999999;'> <p style='display: inline-block; width: 100%; font: 10pt arial;'>If you plan to purchase 25 or more prints at the same time, please contact us by filling out the form on following page: <br> <br><a href='https://pixels.com/contactus.html?tab=contactus' target='_blank' style='font-size: 11pt; font-family: helvetica, arial; text-decoration: underline;'>https://pixels.com/contactus.html?tab=contactus</a> <br> <br>In order to provide you with a quote, we need to know exactly what you intend to purchase. Please provide links to all of the artwork pages and include detailed information about the print sizes, frames, mats, etc.</p> </div> </div> </div> <div id='faqNavigationDivBottom' class='faqNavigationDiv'> <p id='resultCount'>Displaying: 1 - 10 of 67</p><div class='pageListDiv'> <span class='linkPageList linkPageNumber linkPageNumberSelected'>1</span><a class='linkPageList linkPageNumber' rel='' href='javascript: lookupfaqsearchterm(2);'>2</a><a class='linkPageList linkPageNumber' rel='' href='javascript: lookupfaqsearchterm(3);'>3</a><a class='linkPageList linkPageNumber' rel='' href='javascript: lookupfaqsearchterm(4);'>4</a><a class='linkPageList linkPageNumber' rel='' href='javascript: lookupfaqsearchterm(5);'>5</a><a class='linkPageList linkPageNext' rel='next' href='javascript: lookupfaqsearchterm(2);'>Next</a></div> </div> </div> </div> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <h2>Return Shipments</h2> <p style='display: inline-block; width: 100%; font-size: 11pt; font-family: helvetica, arial; padding-top: 15px;'>If you would like to return an order that you received from Pixels, click <a href='returnsstep1.html?newrma=true' style='font-size: inherit; font-family: inherit; color: inherit; text-decoration: underline;'>here</a>.</p> </div> <div style='display: inline-block; width: 100%; padding-top: 15px;'> <h2>Corporate Headquarters</h1> <p style='display: inline-block; width: 100%; font-size: 11pt; font-family: helvetica, arial; padding-top: 15px;'>Pixels</p> <p style='display: inline-block; width: 100%; font-size: 11pt; font-family: helvetica, arial; padding-top: 0px;'>2415 N. Geneva Terrace</p> <p style='display: inline-block; width: 100%; font-size: 11pt; font-family: helvetica, arial; padding-top: 0px;'>Chicago, IL 60614</p> </div> </div> </div> <iframe id='uploadiframe' name='uploadiframe' style='display: inline-block; width: 100%; height: 1px; overflow: hidden; visibility: hidden;'></iframe> <footer data-web-view = '0' style='float: left; min-width: 100%; border-top: 1px solid #222222; box-shadow: none; background-color: #1A1E22; text-align: center;'> <div class='container'> <div id='footer'> <div style='float: left; width: 100%;'> <div> <h3>Our Company</h3> <p><a href='/aboutthissite.html'>About Us</a></p> <p><a href='/shop'>Our Products</a></p> <p><a href='/global-print-on-demand-manufacturing-network.html' rel='nofollow'>Fulfillment Centers</a></p> <p><a href='/press.html' rel='nofollow'>In the Press</a></p> <p><a href='/announcements.html' rel='nofollow'>Announcements</a></p> <p><a href='/reviews'>Buyer Reviews</a></p> <p><a href='/videos.html' rel='nofollow'>Videos</a></p> <p><a href='/retailprogram.html' rel='nofollow'>White-Label Technology</a></p> <p><a href='https://designerprints.com' target='_blank'>Wholesale Prints</a></p> <p><a href='https://pixelsmerch.com/sell-merch-online' target='_blank'>Sell Merch Online</a></p> <p><a href='/px-sign-main-street-santa-monica.html'>PX Sign Santa Monica</a></p> <div style='float: left; width: 100%; margin-top: 40px;'> <h3>Art</h3> <p><a href='/wall-art'>Wall Art</a></p> <p><a href='/art/paintings'>Paintings</a></p> <p><a href='/art/photographs'>Photographs</a></p> <p><a href='/art/drawings'>Drawings</a></p> <p><a href='/art/digital+art'>Digital Art</a></p> <p><a href='/art/mixed+media'>Mixed Media</a></p> <p><a href='/art/originals'>Originals</a></p> </div> </div> <div> <div style='float: left; width: 100%; margin-top: 0px;'> <h3>Shop</h3> <p><a href='/wall-art'>Wall Art</a></p> <p><a href='/home-decor'>Home Decor</a></p> <p><a href='/lifestyle'>Tote Bags & Zip Pouches</a></p> <p><a href='/tech'>Phone Cases & Tech Accessories</a></p> <p><a href='/beach'>Beach</a></p> <p><a href='/apparel'>Apparel</a></p> <p><a href='/shop/tshirts'>T-Shirts</a></p> <p><a href='/shop/tote+bags'>Tote Bags</a></p> <p><a href='/shop/coffee+mugs'>Coffee Mugs</a></p> <p><a href='/overview/round-beach-towels'>Round Beach Towels</a></p> <p><a href='/shop/yoga+mats'>Yoga Mats</a></p> <p><a href='https://pxpuzzles.com' target='_blank'>Puzzles</a></p> <p><a href='https://fineartamerica.com/shop/canvas+prints' target='_blank'>Canvas Prints</a></p> <p><a href='https://fineartamerica.com/shop/tapestries' target='_blank'>Tapestries</a></p> </div> <div style='float: left; width: 100%; margin-top: 40px;'> <h3>Create</h3> <p><a href='/custom'>Design Your Products</a></p> <p><a href='/print-instagram-photos.html'>Print Instagram Photos</a></p> <p><a href='/custom/create-custom-painted-portraits.html'>Photos-to-Art</a></p> <p><a href='/custom/mail-and-frame.html'>Mail & Frame</a></p> <p><a href='/printnfts'>Print NFTs</a></p> <p><a href='/nft-merch'>NFT Merch</a></p> <p><a href='/print-ai-art'>Print AI Art</a></p> </div> </div> <div> <div style='float: left; width: 100%; margin-top: 0px;'> <h3>PIXELS PRO</h3> <p><a href='/sell-art-online'>Sell Your Art</a></p> <p><a href='/membershipplans.html' rel='nofollow'>Membership Plans</a></p> <p><a href='/mobile-app?autoplay=true'>Mobile App (iOS and Android)</a></p> <p><a href='/landing/print-on-demand-shopify-app.html'>Shopify App</a></p> <p><a href='/landing/instagram.html'>Instagram Merchandise</a></p> <p><a href='/landing/youtube.html'>YouTube Merchandise</a></p> </div> <div style='float: left; width: 100%; margin-top: 40px;'> <h3>Contact</h3> <p><a href='/contactus.html?tab=contactus'>Contact Us</a></p> <p><a href='/contactus.html?tab=faq' rel='nofollow'>FAQ</a></p> <p><a href='/discussions.html' rel='nofollow'>Discussion Forum</a></p> <p><a href='/moneybackguarantee.html' rel='nofollow'>Return Policy</a></p> <p><a href='/returnsstep1.html?newrma=true' rel='nofollow'>Returns</a></p> <p><a href='/termsofuse.html' rel='nofollow'>Terms of Use</a></p> <p><a href='/termsofuse.html?document=privacypolicy' rel='nofollow'>Privacy Policy</a></p> </div> <div style='float: left; width: 100%; margin-top: 40px;'> <h3>Location Settings</h3> <p><a href='/enterzipcode.php' rel='nofollow'>Beverly Hills, CA (United States)</a></p> <p> <button type='button' id='footerButtonChangeCurrency'><label for='currencyselectfooter'>Currency</label>:&nbsp;<span id='currencylinkfooter' style='display: inline-block; font: inherit; text-decoration: inherit;'>USD ($)</span></button><select id='currencyselectfooter' name='currencyselectfooter' style='display: none; width: 70px; padding: 2px; margin-top: 0px; font: 8pt arial; color: #666666; border: none; border-radius: 2px;'> <option value='AUD' >AUD ($)</option> <option value='CAD' >CAD ($)</option> <option value='EUR' >EUR (&euro;)</option> <option value='GBP' >GBP (&pound;)</option> <option value='JPY' >JPY (&yen;)</option> <option value='USD' selected>USD ($)</option> </select> </p> <p> <button type='button' id='footerButtonChangeMeasurementUnits'><label for='unitsselectfooter'>Units</label>:&nbsp;<span id='unitslinkfooter' style='display: inline-block; font: inherit; text-decoration: inherit;'>Inches</span></button><select id='unitsselectfooter' name='unitsselectfooter' style='display: none; width: 100px; padding: 2px; margin-top: 0px; font: 8pt arial; color: #666666; border: none; border-radius: 2px;'> <option value='inches' selected>Inches</option> <option value='centimeters' >Centimeters</option> </select> </p> </div> </div> <div> <h3>Stay Connected</h3> <p><a href='/subscribeemaillist.html' rel='nofollow' style='color: #999999; text-decoration: underline;'>Sign up for our newsletter</a> for exclusive deals, discount codes, and more.</p> <div style='float: left; width: 100%; padding-top: 15px; text-align: center;'> <a href='https://facebook.com/shoppixels' rel='nofollow noopener'><img alt='Visit Pixels on Facebook' title='Visit Pixels on Facebook' src='https://images.fineartamerica.com/public/assets/images/LogoFacebookFooter.jpg' style='display: inline-block; width: 30px; height: 30px; margin-right: 3px; border: none; border-radius: 4px;'></a> <a href='https://twitter.com/shoppixels' rel='nofollow noopener'><img alt='Visit Pixels on Twitter' title='Visit Pixels on Twitter' src='https://images.fineartamerica.com/public/assets/images/LogoTwitterFooter.jpg' style='display: inline-block; width: 30px; height: 30px; margin-left: 3px; margin-right: 3px; border: none; border-radius: 4px;'></a> <a href='https://instagram.com/shoppixels' rel='nofollow noopener'><img alt='Visit Pixels on Instagram' title='Visit Pixels on Instagram' src='https://images.fineartamerica.com/public/assets/images/LogoInstagramFooter.jpg' style='display: inline-block; width: 30px; height: 30px; margin-left: 3px; margin-right: 3px; border: none; border-radius: 4px;'></a> <a href='https://pinterest.com/shoppixels' rel='nofollow noopener'><img alt='Visit Pixels on Pinterest' title='Visit Pixels on Pinterest' src='https://images.fineartamerica.com/public/assets/images/LogoPinterestFooter.jpg' style='display: inline-block; width: 30px; height: 30px; margin-left: 3px; margin-right: 3px; border: none; border-radius: 4px;'></a> <a href='https://www.youtube.com/watch?v=511PIXheN8I' rel='nofollow noopener'><img alt='Visit Pixels on Youtube' title='Visit Pixels on Youtube' src='https://images.fineartamerica.com/public/assets/images/LogoYouTubeFooter.jpg' style='display: inline-block; width: 30px; height: 30px; margin-left: 3px; border: none; border-radius: 4px;'></a> </div> <p style='color: #1A1E22;'>Server Status OK</p> </div> <div style='display: inline-block; width: 100%; height: 0px; overflow: hidden; font-size: 0pt; line-height: 0px;'> &nbsp; </div> </div> <p style='display: inline-block; width: 100%; padding-top: 15px; padding-bottom: 25px; font: 11pt arial; color: #AAAAAA; text-align: center;'>Copyright &copy; 2024 Pixels.com - All Rights Reserved</p> </div> </div> <button type='button' id='buttonShowDiscountPopUp' aria-label='View Discount Pop-Up' style='display: none'></button> </footer> <script type='text/javascript' nonce=''> window.addEventListener('load', function(){setTimeout(function(){showGlobalDiscountMessageScrollUp();},2500)}); </script> <script type='text/javascript' nonce=''> function attachFooterEventHandlers() { document.getElementById('footerButtonChangeCurrency').addEventListener('click', togglefootercurrency); document.getElementById('currencyselectfooter').addEventListener('change', updateCurrency); document.getElementById('footerButtonChangeMeasurementUnits').addEventListener('click', togglefooterunits); document.getElementById('unitsselectfooter').addEventListener('change', updateMeasurementUnits); if(document.getElementById('buttonHeaderWebViewHistoryBack')) { document.getElementById('buttonHeaderWebViewHistoryBack').addEventListener('click', function() {history.back();}); } if(document.getElementById('buttonHeaderWebViewHistoryForward')) { document.getElementById('buttonHeaderWebViewHistoryForward').addEventListener('click', function() {history.forward();}); } } if(typeof flagGlobalScriptLoaded != 'undefined') { attachFooterEventHandlers(); } else { window.addEventListener('globalScriptLoaded', attachFooterEventHandlers); } </script> <div id='foregroundDiv'> </div> <div id='backgroundDiv' onClick='javascript: hideForegroundAndBackgroundDivs();'> </div> <a href='javascript: hideForegroundAndBackgroundDivs();'><img id='closeForegroundXImage' src='https://cdn3.iconfinder.com/data/icons/navigation-and-settings/24/Material_icons-01-40-512.png'></a> <script type='text/javascript'> //checkChatStatus(); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10