FAQ

This FAQ provides clarification about Lilxth's creative tools, portfolio, commission services, newsletter, contact process and more.

(function () { const input = document.getElementById("lilxthFaqSearchInput"); const resultsBox = document.getElementById("lilxthFaqSearchResults"); if (!input || !resultsBox) return; const faqItems = [ { title: "Meet the Artist", description: "About Lilxth, her art journey, studies, persona, name, and socials.", highlight: "Meet the Artist", targets: ["#meettheartist01"], keywords: "meet artist who are you lilxth croatia 21 digital art studies drawing 2015 ms paint horses art high school 2020 graduated 2024 law student corporate law art academy passion lilith mythology cross x persona character purple cardigan earrings hairstyle white blouse trousers lawyer facebook instagram discord youtube tiktok online" }, { title: "Programs and Equipment", description: "Art tools, drawing display, PC, iPad, programs, canvas size, and resolution.", highlight: "Programs and Equipment", targets: ["#programsandequipment02"], keywords: "programs equipment tools setup wacom cintiq 16 drawing display pc computer self assembled nvidia geforce gtx 1650 intel core i5 12400f dell s2721 144hz monitor ipad 9th generation apple pencil paper feel clip studio paint pro adobe photoshop procreate photoshop express canvas size resolution dpi 300 dpi 2000 4000 pixels high resolution sharp detailed files web social media platform requirements" }, { title: "About Commissions", description: "How to order, what to prepare, and what content I do not accept.", highlight: "About Commissions", targets: ["#aboutcommissions03"], keywords: "about commissions commission order request cart icon commissions page homepage request page discord server ticket request idea reference images details final price timeline payment options description artstyle pose outfit colors vibe oc character information do not draw nsfw fetishes illegal content" }, { title: "Payment and Process", description: "Payment methods, upfront payment, refunds, timeline, delivery, and response time.", highlight: "Payment and Process", targets: ["#paymentandprocess04"], keywords: "payment process payment methods credit card debit card paypal applepay apple pay steam digital giftcard gift card roblox robux disclaimer upfront before drawing accepted final price payment page email [email protected] confirmation receipt transaction refunds refund illness emergency technical issues unfinished work how long commission take 1 to 4 weeks complexity queue delays final artwork email original image quality respond reply messages orders 24 48 hours weekends holidays" }, { title: "Usage and Rights", description: "Terms of Service, Privacy Policy, social media use, credit, editing limits, public posting, and watermarking.", highlight: "Usage and Rights", targets: ["#usageandrights05"], keywords: "usage rights terms of service tos privacy policy pp legal procedural framework commissions payment terms usage rights revisions responsibilities data handling informed consent disputes misunderstandings expectations social media credit use art edit artwork crop resize alter permission post commission online publicly watermark unauthorized use private do not post ask me not to" }, { title: "Contact and Support", description: "Which form to use for inquiries, collaborations, feedback, or bug reports.", highlight: "Contact & Support", targets: ["#contactandsupport06"], keywords: "contact support contact form general inquiry regular questions messages collaboration form collab product reviews sponsorships sponsor project inquiries commission feedback completed commission experience bug reports bug report broken confusing not working website issue glitch error forms organized respond fix issues" }, { title: "Newsletter", description: "Help with subscribing, unsubscribing, missing newsletter emails, spam, junk, promotions, and inbox filtering.", highlight: "Newsletter", targets: ["#newsletter07"], keywords: "newsletter subscribe unsubscribe subscribed unsubscribed subscription sign up email list mailing list email missing don't see spam junk promotions updates folder inbox filtered automatically search lilxth correct email address subscribing not spam not junk future emails star important mark important lost again contact directly help check it" } ]; let currentHighlights = []; function normalizeText(text) { return text .toLowerCase() .replace(/,/g, ".") .replace(/€/g, " euro ") .replace(/&/g, " and ") .replace(/\s+/g, " ") .trim(); } function plainText(text) { return normalizeText(text) .replace(/[^\w\s]/g, " ") .replace(/\s+/g, " ") .trim(); } function escapeRegExp(string) { return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); } function clearHighlights() { currentHighlights.forEach(mark => { const parent = mark.parentNode; if (!parent) return; parent.replaceChild(document.createTextNode(mark.textContent), mark); parent.normalize(); }); currentHighlights = []; } function isInsideIgnoredArea(node) { if (!node.parentElement) return true; return node.parentElement.closest( ".lilxth-faq-search, a, button, [role='button'], script, style, noscript, iframe, input, textarea" ); } function isIgnoredText(text) { const clean = normalizeText(text); const plain = plainText(text); return ( clean.includes("© 2026 lilxth") || clean.includes("all rights reserved") || plain.includes("2026 lilxth all rights reserved") || plain.includes("designed coded and illustrated by lilxth") || clean === "faq" || clean === "categories" ); } function isVisibleElement(element) { if (!element) return false; let current = element; while (current && current !== document.body) { const style = window.getComputedStyle(current); if (style.display === "none") return false; if (style.visibility === "hidden") return false; if (style.opacity === "0") return false; current = current.parentElement; } return !!(element.offsetWidth || element.offsetHeight || element.getClientRects().length); } function getVisibleTextNodes() { const walker = document.createTreeWalker( document.body, NodeFilter.SHOW_TEXT, { acceptNode: function (node) { if (!node.nodeValue.trim()) return NodeFilter.FILTER_REJECT; if (isInsideIgnoredArea(node)) return NodeFilter.FILTER_REJECT; if (isIgnoredText(node.nodeValue)) return NodeFilter.FILTER_REJECT; if (!isVisibleElement(node.parentElement)) return NodeFilter.FILTER_REJECT; return NodeFilter.FILTER_ACCEPT; } } ); const nodes = []; let node; while ((node = walker.nextNode())) { nodes.push(node); } return nodes; } function highlightVisibleText(term) { clearHighlights(); if (!term || term.length < 2) return null; const safeTerm = escapeRegExp(term); const regex = new RegExp("(" + safeTerm + ")", "gi"); const nodes = getVisibleTextNodes(); let firstHighlight = null; nodes.forEach(textNode => { const text = textNode.nodeValue; if (!new RegExp(safeTerm, "i").test(text)) return; const fragment = document.createDocumentFragment(); let lastIndex = 0; let match; regex.lastIndex = 0; while ((match = regex.exec(text)) !== null) { const before = text.slice(lastIndex, match.index); const matchedText = match[0]; if (before) { fragment.appendChild(document.createTextNode(before)); } const mark = document.createElement("mark"); mark.className = "lilxth-faq-highlight"; mark.textContent = matchedText; fragment.appendChild(mark); currentHighlights.push(mark); if (!firstHighlight) { firstHighlight = mark; } lastIndex = match.index + matchedText.length; } const after = text.slice(lastIndex); if (after) { fragment.appendChild(document.createTextNode(after)); } textNode.parentNode.replaceChild(fragment, textNode); }); return firstHighlight; } function openTarget(target) { const temporaryLink = document.createElement("a"); temporaryLink.href = target; temporaryLink.style.display = "none"; document.body.appendChild(temporaryLink); temporaryLink.click(); document.body.removeChild(temporaryLink); } function scrollToHighlight(highlight) { highlight.scrollIntoView({ behavior: "smooth", block: "center" }); } function openItemAndHighlight(item, query) { clearHighlights(); const searchTerms = []; const normalizedQuery = normalizeText(query); const blockedFallbackQueries = ["faq", "faqs", "question", "questions", "answer", "answers", "help", "categories"]; if (query && !blockedFallbackQueries.includes(normalizedQuery)) { searchTerms.push(query); } if (item.highlight) searchTerms.push(item.highlight); const targets = item.targets && item.targets.length ? item.targets : ["#meettheartist01"]; function tryTarget(index) { if (index >= targets.length) { for (const term of searchTerms) { const fallbackHighlight = highlightVisibleText(term); if (fallbackHighlight) { scrollToHighlight(fallbackHighlight); return; } } return; } openTarget(targets[index]); setTimeout(() => { for (const term of searchTerms) { const foundHighlight = highlightVisibleText(term); if (foundHighlight) { scrollToHighlight(foundHighlight); return; } } clearHighlights(); tryTarget(index + 1); }, 800); } tryTarget(0); } function createNoResultsBox() { const noResults = document.createElement("div"); noResults.textContent = "No results found. Try broader FAQ searches like: commissions, ordering, payment, refunds, usage rights, privacy, social media, contact, bug reports, newsletter, or equipment."; noResults.style.setProperty("display", "block", "important"); noResults.style.setProperty("padding", "14px 18px", "important"); noResults.style.setProperty("margin-top", "10px", "important"); noResults.style.setProperty("border-radius", "20px", "important"); noResults.style.setProperty("background", "rgba(86, 94, 120, 0.65)", "important"); noResults.style.setProperty("color", "rgba(255, 255, 255, 0.78)", "important"); noResults.style.setProperty("font-size", "14px", "important"); noResults.style.setProperty("font-family", "inherit", "important"); noResults.style.setProperty("font-weight", "400", "important"); noResults.style.setProperty("line-height", "1.45", "important"); noResults.style.setProperty("text-align", "center", "important"); noResults.style.setProperty("box-sizing", "border-box", "important"); return noResults; } function searchFaq() { const query = normalizeText(input.value); resultsBox.innerHTML = ""; clearHighlights(); if (query.length < 2) return; const matches = faqItems.filter(item => { const searchable = normalizeText( item.title + " " + item.description + " " + item.keywords ); return searchable.includes(query); }); if (matches.length === 0) { resultsBox.appendChild(createNoResultsBox()); return; } matches.forEach(item => { const result = document.createElement("div"); result.className = "lilxth-faq-result"; const title = document.createElement("span"); title.className = "lilxth-faq-result-title"; title.textContent = item.title; const description = document.createElement("span"); description.className = "lilxth-faq-result-description"; description.textContent = item.description; result.appendChild(title); result.appendChild(description); result.addEventListener("click", function () { openItemAndHighlight(item, query); }); resultsBox.appendChild(result); }); } input.addEventListener("input", searchFaq); })();

Categories


© 2026 Lilxth. All rights reserved.
Designed, coded, and illustrated by Lilxth.

01
Meet the Artist


Q: Who are you?A: I’m a 21-year-old artist from Croatia, creating digital art while balancing creative work with my studies.


Q: How long have you been making art?A: I started drawing in 2015 as a very ambitious 10-year-old using MS Paint to draw horses.
What began as drawing things I loved quickly turned into a serious passion.
I enrolled in Art High School in 2020 and graduated in 2024, gaining four years of formal artistic education and growth.


Q: What are you doing right now?A: I’m currently a first-year law student, working toward a career in corporate law.Even though I chose a more stable academic path, feeling stuck after all of my dearest friends continued off to art academies, while I went down a completely different path that I have never stepped foot in..
Art still remains a balanced part of my life.
I believe you don’t have to choose only one passion, with dedication, it’s possible to pursue multiple paths at the same time.


Q: How did you come up with the name “Lilxth”?A: It started as wordplay.
I’ve always loved mythology and so I came across the fierce and independent figure of “Lilith.”
I found the name elegant and beautiful.
At the time, the character I used was called “Cross” (X), so I experimented with combining the sounds and letters until “Lilxth” felt right. The name has stayed with me for over five years.


Q: How did you design your character/persona?A: My character is a stylized persona of myself.The design represents the two paths I’ve chosen in life:
The artistic side, shown through a purple, loose cardigan, distinctive earrings and my recognizable hairstyle from art school.
And in contrast, the classic lawyer's formal white blouse, dark trousers, black shoes, and a watch.It reflects my belief that two different worlds can peacefully coexist together in ones life.


Q: Where else can I find you online?A: For now, you can find my work and updates on Facebook, Instagram and Discord.I share new art, finished commissions, promotions, and community updates there.I also hope to start a YouTube animation channel and a TikTok account in the future to share more creative content.


© 2026 Lilxth. All rights reserved.
Designed, coded, and illustrated by Lilxth.

02
Programs and Equipment


Q: What equipment do you use to create your art?A: Most of my artwork is created on a self-assembled personal computer using a Wacom Cintiq 16 drawing display.My setup includes:
an NVIDIA GeForce GTX 1650 graphics card.
Intel Core i5-12400F processor.
a Dell S2721 144Hz monitor.
Some of my artwork is also created on an iPad (9th generation) with a paper-feel screen protector, paired with an Apple Pencil (1st generation).


Q: What programs do you use for your artwork?
A: I primarily use Clip Studio Paint Pro and Adobe Photoshop to create digital illustrations on my personal computer.
On my iPad, I alternate between Clip Studio Paint Pro, Procreate, and Photoshop Express, depending on the project and workflow.


Q: What canvas size / resolution do you work in?
A: I work in high resolution to ensure clean details and flexibility. Most illustrations are created at 300 DPI with large canvas sizes (usually between 2000–4000+ pixels on the longest side, depending on the project).
This allows the artwork to stay sharp and detailed. Final files may be resized for web, social media, or specific platform requirements.


© 2026 Lilxth. All rights reserved.
Designed, coded, and illustrated by Lilxth.

03
About Commissions


Q: How do I order a commission?
A: There are two ways!
1. Click the cart icon below, or visit the Commissions page linked on my homepage.

2. Choose the design that matches the service you want and click the cart icon. You’ll be taken directly to the Commission Request page.3. Write me a commission request with your idea, reference images, and any important details.Once I review your request, I’ll contact you to confirm the commission, final price, estimated timeline, and available payment options. Payment is made only after I approve the request and we agree on the details.

ORIf you prefer a more direct and relaxed ordering process, you can join my Discord server and discuss your commission further through a ticket!1. Click the Discord icon below to join.

2. Go to #♡┃ticket-request and open a ticket.3. Send me a message there with your idea, reference images, and any important details.After I review the information you provided, I’ll confirm whether I can accept the commission and let you know the final price, timeline, and available payment options. Payment comes after your request is reviewed and approved, depending on the payment method you choose.


Q: What do you need from me to start?A:
1. Detailed description of the idea.
2. Reference images (type of artstyle, pose, outfit, colors, vibe.)3. Character information if it's an OC.The clearer the info, the better the result.


Q: What are the things you do not draw?A:
• NSFW/Fetishes/illegal content.


© 2026 Lilxth. All rights reserved.
Designed, coded, and illustrated by Lilxth.

04
Payment and Process


Q: What payment methods do you accept?A: I accept the following payment methods:
• Credit Card/Debit Card/Paypal/ApplePay
• Steam Digital GiftCard
• Roblox (Robux)


Q: When do I pay?A: Payment is required upfront before I start drawing.After your commission is accepted and the final price is confirmed, I will send you a payment page with the available payment methods. Please complete the payment only through the payment page I provide.Once payment is completed through the agreed method, I will confirm the payment and commission details by email.📩 [email protected]Some payment platforms may also send their own payment confirmation, receipt, gift notification, or transaction record.


Q: Do you offer refunds?A: Refunds are not available once I’ve started working, since time and effort are already invested.The only exception is if I am unable to complete the commission due to serious, unforeseen circumstances on my side (for example: illness, emergency, or technical issues that prevent me from finishing the artwork).In that case, you will receive a refund for the unfinished work.


Q: How long does a commission take?A: Usually 1 to 4 weeks, depending on complexity and my queue.I aim to communicate clearly about timing and will always keep you updated if any delays arise.The final artwork will be sent to your email to preserve the original image quality.


Q: How long does it take for you to respond to messages or orders?A: I usually reply within 24–48 hours. Response time may be slightly longer during busy periods, weekends, or holidays.I read all messages and answer as soon as possible.


© 2026 Lilxth. All rights reserved.
Designed, coded, and illustrated by Lilxth.

05
Usage and Rights


Q: Why is it necessary to read the Terms of Service and Privacy Policy before placing an order?A: The Terms of Service and Privacy Policy establish the legal and procedural framework governing commissions, including payment terms, usage rights, revisions, responsibilities of both parties, and data handling practices.By placing an order request, you acknowledge and agree to these terms.Reviewing them beforehand ensures informed consent and helps prevent disputes, misunderstandings, or unmet expectations.


Q: Can I use the art for social media?A: Yes, as long as you credit me.


Q: Can I edit the artwork?A: You may crop or resize, but not alter the art itself without permission.


Q: Will you post my commission online?A: Yes, unless you ask me not to.Any commission I post publicly will include a watermark to help prevent unauthorized use.


© 2026 Lilxth. All rights reserved.
Designed, coded, and illustrated by Lilxth.

06 Contact and Support


Q: Which contact form should I use?A: Please choose the form that best matches your message:→ General Inquiry — for regular questions, messages, or anything that does not fit another form.→ Collaboration Form — for collaboration requests, product reviews, sponsorships, or project-related inquiries.→ Commission Feedback — for sharing feedback about a completed commission experience.→ Bug Reports — for reporting something broken, confusing, or not working properly on the website.Using the correct form helps me stay organized and respond or fix issues more efficiently.You can find all forms using the button below.


© 2026 Lilxth. All rights reserved.
Designed, coded, and illustrated by Lilxth.

07
Newsletter


Q: How do I unsubscribe from the newsletter?A: Every newsletter on email includes an “Unsubscribe” link at the bottom. Click it anytime to be removed from the mailing list.You can also contact me directly if you need help.


Q: What should I do if I don’t see the newsletter in my email?A: Please check your Spam, Junk, Promotions, or Updates folder first. Sometimes newsletters can be filtered there automatically.You can also search your inbox for Lilxth or the newsletter email. If you still can’t find it, make sure you entered the correct email address when subscribing.If you find the newsletter there, click “Not Spam” or “Not Junk” so future emails are more likely to appear in your inbox. You can also add a star or mark it as important so it doesn’t get lost again.If nothing works, feel free to contact me directly and I’ll help you check it.


© 2026 Lilxth. All rights reserved.
Designed, coded, and illustrated by Lilxth.