2.0

  • Redone Photography section to include both Film and Digital collections

  • Redone Homepage to follow contrast to text standards

  • Redone the Commission Request page with multiple choices of payment plans

  • Removed a couple of out of date pages from the navigation
    - as well as removing the commission request option within the contacts tab as there is already a button next to it

  • The menu now has a black gradient to add extra contrast against the multiple kinds of backgrounds that are used on the site

  • AWC Artworks will link to the full versions and will redirect back to the collection page after clicking or tapping the close icon (.com/awc/#/square)

  • The “Legacy Collections” page was added to make the digital art dropdown a little less cluttered

  • Upgrades to Squarespace’s editor allows some awesome page designing abilities and has ultimately allowed a better flow on the homepage
    - these upgrades also included different formatting between Phone and Desktop Versions

  • Collections Added:

    • New Dawn

    • Little Islands

1.9.7

  • AWC Season 3 now includes the square versions. Before you would click the image and it would show the portrait version, but now it redirects to a page with all square versions.

  • Homepage now shows only 1 latest Instagram post, this is to get around the poor implementation of the Instagram feature on the site, I had to refresh the login credentials many times and just got annoyed with it

1.9.6

  • Fixed over 150 grammatical errors within the site (What can I say, grammar is not my strong suit)

  • Added: Commission Requests

1.9.5

  • Compressed the Cluster of AWC Seasons In the Digital Art Tab to “AWC Weekly Art” and made it link to the current season

  • Changed format of the main home screen to compress more info

1.9.4

  • Added a search system for those who don’t feel like navigating through the convenient menu directly to the left of the search button. though it is very wonky and won’t help that much if you are looking for specific stuff apart from collections

  • Extra Gnomes hiding under the sheets

1.9.3

  • Removed the “Donate” button from the top bar; no one used it

  • Added the functionality of “Anchors”. These ‘anchors’ will be used to add quick scroll functions to a page; as of this version, there is only one usable one, and that is on the home page. and the URL to command the Anchor is “/#page-bottom.”

  • Home page “Like what I do” area background now reflects my latest socials post, though this doesn’t change for AWC Artworks as you would see it behind the arc feature section

  • Enabled the “Esc to menu” option. which will bring up the admin login for easy access (for me)

1.9.2

  • Changed “Photography” to “Photo” due to a mobile menu sizing bug

  • Made a new Photography Collection and made then have an “X.0” naming dynamic

  • reorganised a lot of the backend foundation for the site, which includes URL slug restructures like:

    • AWC Slugs are like “/awc/1” for Season 1 and “/awc/2” for Season 2

    • Photography versions are “photography/1” and “/2.

    • FAQ slug “/faq” is now: “/info/faq.

    • Projects slug “/projects” is now “/info/projects.

    • What I use slug “/what-i-use” is now”/info/tools.

    • AWC slug “/anyone-wanna-chat” is now “/info/awc.

    • My Workflow slug “/my-workflow” is now “info/workflow.

    • More About Me slug “/more-about-me” is now “/info/me.

    • and Why Does This Site Exist slug “/why-this-exists” is now “/info/why.

    Overall a restructure of the slugs to help contextual navigation via the URL bar.






1.9.1

  • Re-done the store page to include my assets along with RedBubble and Displate being featured there as well

  • Added “What is AWC” and “More about me” in the Info tab

  • got rid of that silly joke in the 404 Page

1.9

  • Incorporated an animation engine to perform animations in some elements of the site

  • added a store page featuring my displate, though that will feature some other stuff in the future

  • Improved image compression for some parts of the site

  • Updated the FAQ page, added what render engine I use and updated the design language

1.8.2

1.8.1

  • AWC: S2 Page has been updated to follow dark mode

  • Home Page optimisation improvements made

1.8

  • Removed “Just your average artist” Tagline thing I had, wasn’t Professional

  • Some Grammar problems fixed

  • Collections turned into Digital Art, and Photography now added to the site

  • Collections apart from AWC and QuickPix now follow a New Design Ruling

  • Contact Now Added to the header

1.7

  • Moved Contact and Make a Donation, Donation is now used as the top button, and Contact has been moved to about me and within Info

  • Header Now Follows Scroll, AKA: “Sticky Header”. Scrolling up will command the header back…

  • Due to the header being sticky, the home has been removed from the Header as tapping my name will take you back home

  • Removed “Scroll Down Indicator” as It would seem it wanted too much attention, so I told it to hideaway

1.6

  • Changes to Layout, and now Featuring the 74th Edition of AWC on the Homepage

  • Added 3D Text to the main page

  • Added more stuff to the footer, along with a return to home page message

1.5

Fixed:

  • Cursor Appearing on Mobile after taps

Added:

  • This Page

  • “Funny” Error 404 Webpage

  • “Behind The Scenes” (Coming Soon)

  • Home On Navigation

  • Arrow indicating scroll down ability on mobile devices

1.4

Added:

  • Back to top Button (Kinda wonky on Phone but it works)

  • Custom Cursor

1.3

Added:

  • Pages added: More about me, What I use, FAQ and Why does this site exist

  • Announcement Bar Added

  • Donate System Now Works

  • Contact System Now Works

1.2

Added:

  • Collections Menu

  • QuickPix along with My Workflow

Removed:

  • Collections Page (Posters) (Might Be coming back at some point). Mainly removed because of how wonky and Barron it was

1.0

Site Launch

Change Logs

Because it’s always cool to keep track of changes and evolutions to things

A Glimpse into the Code: (Yes, CSS is a pain)

Disclaimer: This site is a heavily modified version of a squarespace template

/*Scroll Down Indicator*/ @media only screen and (max-width: 700px) { body:before { font-family: "squarespace-ui-font"; content:"\e009"; position:fixed; bottom:0; width:10%; text-align:center; z-index:1000; display:block; color:rgba(255, 255, 255, 0.0); font-size:10vw; background-color: rgba(00, 00, 00, 0.0); margin-left:44%; margin-right:44%; padding:.3em .1em; -webkit-transition: opacity 1s ease-in-out; -moz-transition: opacity 1s ease-in-out; -ms-transition: opacity 1s ease-in-out; -o-transition: opacity 1s ease-in-out; } .scrolled:before { -webkit-transition: opacity 2s ease-in-out; -moz-transition: opacity 2s ease-in-out; -ms-transition: opacity 2s ease-in-out; -o-transition: opacity 2s ease-in-out; opacity: 0; } } /*Custom Cursor*/ @media only screen and (min-width: 734px){@media ( hover: none ) { .cursor { display: none !important; } } * { cursor: none; } .cursor { --size: 15px; height: var( --size ); width: var( --size ); border-radius: 50%; pointer-events: none; position: absolute; transform: translate( -50%, -50% ); z-index: 99999999999; } .cursor.cursor-dot { background: #f82460; /* This defines the color of the cursor */ mix-blend-mode: normal; /* Delete this line if you dont want the circle to invert */ transition: width 0.6s, height 0.6s, background-color 0.6s; transition-timing-function: ease-out; } .cursor-dot.active { --size: 50px; background-color: #f82460; mix-blend-mode: normal; opacity: 0.3; } a{ texr-decoration:default; cursor: url(https://static1.squarespace.com/static/6071ad681f54ec7ea58a4e37/t/607fe68d049648303b513d92/1618994829442/pngfind.com-cursor-png-3014993.png) !important; } /*404 Header and Footer Removal*/ #collection-607c38f4d5cba32f722f4a70 { header,footer{ display: none !important; } } } //Scroll Up Button// #myBtn { width: 50px; height: 50px; display: none; position: fixed; bottom: 20px; right: 30px; z-index: 99; border: none; outline: none; font-size: 25px !important; color: #FFFFFF; cursor: pointer; padding: 10px 10px 8px 10px; border-radius: 25%; box-shadow: 0px 0px 0px #000; /* Change the hex code in the next line to change background color */ background-color: #ff355e; } #myBtn:hover { background-color: #FFFFFF; color: #ff355e; }