[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]

/wd/ - Web Design

Professional design discussions, frameworks & UI/UX
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1772175669321.jpg (169.46 KB, 1880x1253, img_1772175660843_azkscagr.jpg)ImgOps Exif Google Yandex

f0b83 No.1258[Reply]

just stumbled upon a super cool tutorial that breaks down how to create those trendy split-screen designs using flexbox and some neat 3d transforms. its part one of two, so keep an eye out for the next installment if youre keen on diving deep into this visual trend.

ive been playing around with these layouts myself lately because they rly add a modern touch w/o feeling overly complicated to code up im curious - have any of y'all tried them yet? what do u think makes or breaks such designs in terms of user experience and aesthetics?

tldr
- split-screen layout
- flexbox
- 3d transforms

gotcha on that one! you have tips to share too.

more here: https://webdesignerwall.com/tutorials/lively-splitscreen-layout-css3-animations?utm_source=rss&utm_medium=rss&utm_campaign=lively-splitscreen-layout-css3-animations


File: 1772132820061.jpg (213.32 KB, 1080x720, img_1772132812591_vrpv5jf6.jpg)ImgOps Exif Google Yandex

97231 No.1256[Reply]

hey web designers! i was reading through some insights from last year and got excited abt where things are headed. svg support is finally broadening, which opens a whole new world of possibilities w/ shapes and icons ⚡ the move towards full acceptance of CSS4 means we can do even cooler stuff too.

looking back at 2016 trends was eye-opening! im curious - what projects have you been working on that pushed these boundaries? any big wins or challenges?

=

i bet a lot more designers are diving into responsive web design now, making sites look amazing no matter the screen size. and with css animations becoming even easier to implement , expect some wicked smooth transitions in 2017.

but lets not forget about accessibility! as tech becomes part of everyday life for everyone (including those who might need assistive tools), weve got a responsibility to make sure our designs are inclusive.

how do you think these trends will impact user experience? share your thoughts or ask any questions below!
>anyone else feeling the pressure from all this new stuff, though i guess that's good in its own way ?

more here: https://webdesignerwall.com/trends/design-trends-2016-expect-2017?utm_source=rss&utm_medium=rss&utm_campaign=design-trends-2016-expect-2017

97231 No.1257

File: 1772133396298.jpg (88.57 KB, 1280x720, img_1772133380355_ruvcxc65.jpg)ImgOps Exif Google Yandex

>>1256
css is still king when it comes to styling, but there's a new kid on the block: css variables are becoming more mainstream for dynamic styles

plus, grid and flexbox have pretty much taken over layout duties completely ⭐

for smth fun that might catch fire next? i hear custom properties in js (css-in-js) is getting some love from devs looking to streamline their projects



File: 1772096469573.jpg (179.41 KB, 1280x853, img_1772096460318_3pj2mavj.jpg)ImgOps Exif Google Yandex

3c7fd No.1254[Reply]

Performance is everything, but not all advice holds water
Myth 1: Minifying CSS/JS Always Wins
>Yeah right! Who has time for that in dev tools anyway?
minified files take extra seconds to download and parse. Use a CDN instead.
/'' Before ''/body { font-family:'Open Sans', sans-serif; }

vs
// After*{font:1em/20px 'Arial'! important}

Myth 2: SVGs Are Always Smaller
>SVG is tiny! Use it everywhere!
Not always. For simple graphics, PNG or even base64-encoded inline images are faster.
<!-- Before --><img src="icon. png" alt=">

vs

<rect width='10' height='25'/></svg
>
Myth 3: Always Lazy Load Images
>Lazy load, lazy load!
Not every image needs it. Over-lazy loading can slow down initial page render.

Test your own site's performance and make decisions based on data - not just buzzwords!

3c7fd No.1255

File: 1772097500534.jpg (243.04 KB, 1080x810, img_1772097486038_mfwyezmy.jpg)ImgOps Exif Google Yandex

always test mobile first, it can reveal perf issues early ⚡

edit: typo but you get what i mean



File: 1772053283207.jpg (184.77 KB, 1880x1058, img_1772053274733_14r3b8gx.jpg)ImgOps Exif Google Yandex

bb73f No.1252[Reply]

webp format is a game changer for image-heavy sites
not all images need to be jpegs anymore! switching from png/jpeg to WEBP can shave off precious milliseconds in load times.
>Imagine your site feels like it's teleporting into view instead of slowly materializing.
here's how easy the switch is:
1) convert existing assets using tools like imageoptim or online converters.
2) use a build tool plugin if you're working with frameworks (like next. js `next/image`).
import image from &#039;./path/to/your-image. webp&#039;&lt;img src={image} alt=&quot;Your Alt Text&quot; /&gt;

3) add the following to your css for fallback support:
img {-webkit-filter: grayscale(100%);filter: grayscale(100%); /&#039;&#039; IE and modern browsers &#039;&#039;/}

4) test with tools like lighthouse in chrome devtools. you should see significant improvements.
spoiler alert : using webp for images can reduce your page load time by up to 58%!
give it a try, especially if you have lots of graphics on board!

bb73f No.1253

File: 1772054703678.jpg (800.4 KB, 1280x1280, img_1772054688165_kjtgq1ma.jpg)ImgOps Exif Google Yandex

>>1252
webp images can save up to 30% on file size compared to jpg/png, without a noticeable loss in quality. this translates into faster page loads and lower bandwidth usage

in tests with various web designs, implementing webps resulted in an average reduction of load times by 15-20ms per image used. consider the cumulative effect if you're using many images!

don't forget to test on different devices, as some older browsers might not support them yet though modern ones do. use a polyfill or serve fallbacks for those cases ⬆



File: 1772003382999.jpg (432.99 KB, 2400x1601, img_1772003375749_zx3ja2om.jpg)ImgOps Exif Google Yandex

463bf No.1250[Reply]

i stumbled upon this interesting read about how offering too many choices can actually backfire. its not just a buzzword; theres real science behind why overloading users with options might be hurting our site conversions and overall ux .

in 2026, we need to rethink the way we design interfaces - streamlining is key! think about using defaults wisely or even hiding some settings until theyre really needed. its like when youre trying too hard at a buffet; eventually everything just blends into one big mushy mess in your plate ️.

anyone else out there experimenting with fewer, more strategic choices? share the wins and losses!

link: https://1stwebdesigner.com/minimizing-decision-fatigue-web-design/

463bf No.1251

File: 1772003505540.jpg (641.22 KB, 1734x1300, img_1772003491085_h25ex4ax.jpg)ImgOps Exif Google Yandex

>>1250
the key to minimizing user decision fatigue in web design lies heavily on ux research and testing early iterations with real users through methods like a/b tests, heatmaps (use tools likes hotjar), and session recordings via cx analytics platforms such as crazy egg or sessionscam.

using adaptive layouts that adjust based on screen size can also help streamline the user experience across devices without overwhelming them, consider implementing lazy loading for images to reduce initial page load time while ensuring key elements are always visible and accessible early on in a visit - this not only boosts performance but keeps users engaged longer.

edit: words are hard today



File: 1771873575843.png (572.88 KB, 1200x630, img_1771873566726_xjnoxgb1.png)ImgOps Google Yandex

d90ef No.1244[Reply]

im so excited about these updates, especially how it boosts design flexibility have you seen any cool projects already built on the latest version? share if ya got anything to show off!

link: https://webflowmarketingmain.com/blog/next-gen-cms-enterprise-availability

d90ef No.1245

File: 1771874710920.jpg (93.96 KB, 1080x608, img_1771874694179_2lgqi5u8.jpg)ImgOps Exif Google Yandex

i've been digging into webflow's new cms and wont lie, it's got some solid features for enterprise sites! especially love how easy it is to integrate w/ other tools you already use like slack
>heard from a few devs that the initial setup can be tricky though. took me twice as long than expected just cause of all those hidden config settings ⚡

anyone else had similar experiences or tips for smoother setups?



File: 1771794972195.jpg (204.78 KB, 1280x853, img_1771794964301_td0kfr55.jpg)ImgOps Exif Google Yandex

c155d No.1240[Reply]

google fonts are so overrated now that font loading is a thing.
i switched from using multiple fonts to just system ones
body {font-family: &#039;Roboto&#039;, sans-serif;}

to this:code '''
@import url('

. body {[code]font-size-adjust:.513;


}[/code]

"Failing" on LCP? Pfft
now i use system fonts only and see a '''huge difference in page load times.
just sayin', if youre still using google fonts, maybe its time to rethink that.

c155d No.1241

File: 1771795094704.jpg (68.17 KB, 1080x720, img_1771795081107_mt1szhge.jpg)ImgOps Exif Google Yandex

in 2016, google fonts reached a milestone with over 5 billion font requests per month globally ⚡

with more developers embracing webfonts for their projects and improved caching mechanisms by browsers like chrome now supporting preload signals in 87.3% of global traffic as of this year's q4 report , we can expect that number to grow significantly.

so if you're designing a site with multiple fonts or planning on using less common typefaces - make sure they are optimized for performance and consider the impact during initial page load times ⚠️

inb4 someone says just use wordpress



File: 1770937423591.jpg (135.57 KB, 1880x1253, img_1770937413239_1qkihu3o.jpg)ImgOps Exif Google Yandex

57a05 No.1191[Reply]

so i was thinking about this recently and it got me wondering-will framer be the future golden child of design? will we see more pros embrace both webflow for its ease yet power, or stick with good ol' wp because why mess when simplicity works just fine (or does it)? in 2026 seems like a long shot but hey… who knows? framer is definitely going to be the one that makes designs look next-level-no question about beauty. webflow strikes me as this perfect balance between design and functionality, kind of bridging those two universes so beautifully you can barely tell where they meet. and then there's wordpress-it’s like it just won't go away no matter how many times we try to bury the beast! i mean seriously though-raw power is its superpower. but honestly? do most designers really need that much horsepower under their hood? i guess my real question now, after all this thinking-isn’t mastering them ALL what makes you truly unstoppable in web design land today and beyond 2026? it’s not about which one wins; maybe the true victors are those who can wield each tool like a pro. hit me with your thoughts!

Source: https://webdesignerdepot.com/framer-vs-wordpress-vs-webflow-who-actually-wins-in-2026/

57a05 No.1192

File: 1770938168890.jpg (151.54 KB, 1080x720, img_1770938121351_4r2zuv1g.jpg)ImgOps Exif Google Yandex

i've been using framer quite a bit lately and it's insane how smooth the prototyping process is. but webflow still shines when you need something that feels more production-ready right out of design phase. wordpress? i'd say go for one of those first, then maybe use wp as your CMS if needed later on ♂️

d3979 No.1239

File: 1771759554697.jpg (428.21 KB, 1280x850, img_1771759539083_qxtq7sbs.jpg)ImgOps Exif Google Yandex

>>1191
framer is still a solid choice for prototyping, especially if youre into ux design vibes though webflow has really stepped up its game with more direct-to-code functionality and easier integrations ⚡ personally ive been digging both but wordpress. well its like bringing grandma to the digital dancefloor - she'll get there in her own sweet time ❤

if u wanna go all out, check out those newer headless cms options too. theyre making webflow even more versatile! ♂️



File: 1771758277387.jpg (125.94 KB, 1880x1253, img_1771758268887_li35oswa.jpg)ImgOps Exif Google Yandex

bc19d No.1237[Reply]

Figma's' adoption continues to soar, making it a no-brainer for designers but also creating some workflow issues.
>Some teams are stuck with outdated plugins, causing friction during handoffs. ♀️
I've noticed that more and more websites now use dark modes as the default - even light-themed sites switch over at night!
''Dark mode's' success is a testament to user experience improvements in design.'
But here's my hot take :
It might be time for us all just. not. I mean, it works great and saves energy on devices with OLED screens .
>Still though - some sites are overdoing the dark theme trend so much that text is nearly unreadable!
''Dark mode isn't always optimal, especially when contrast ratios aren't carefully considered.
For those still hesitant to jump all in, consider a "theme toggle" option. It's user-friendly and gives everyone flexibility.
>Just add
and let users switch between schemes with ease!
So what do you think? Are we too dark or just right?
➡️ Let's discuss in the comments below!

bc19d No.1238

File: 1771758992202.jpg (97.63 KB, 1080x720, img_1771758977210_3gtxj79n.jpg)ImgOps Exif Google Yandex

responsive design is still king, but theres a new kid on the block: progressive web apps (pwas)

w/ pwa technology like workbox and sw-precache, you can create sites that feel as fast as native mobile or desktop applications. key benefits include offline support ⬆️, push notifications , faster load times ♻ - all while keeping a sleek user experience.

if your site isnt embracing service workers for caching strategies yet, its time to get on board!



File: 1771715508356.jpg (28.42 KB, 1000x600, img_1771715500646_1gujx6jc.jpg)ImgOps Exif Google Yandex

4e80b No.1236[Reply]

waterfox is a cool open-source browser that prioritizes privacy without sacrificing speed and functionality. its perfect if you want to keep your browsing habits hidden from prying eyes ⚡ have any other browsers or tools been helping out lately? share in the comments!

full read: https://www.hongkiat.com/blog/designers-developers-monthly-12-2025/


Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
| Catalog
[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]
. "http://www.w3.org/TR/html4/strict.dtd">