[ 🏠 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: 1775077553917.jpg (229.4 KB, 1880x1277, img_1775077543526_afdk1f83.jpg)ImgOps Exif Google Yandex

ce970 No.1418[Reply]

Buttons guide site visitors to important actions, so they should be prominent and convincing. Learn from these examples of quality website button design.

article: https://webflowmarketingmain.com/blog/5-beautiful-button-designs-to-copy-paste-into-your-next-project

ce970 No.1419

File: 1775087323103.jpg (128.64 KB, 1880x1253, img_1775087307153_om8fo43d.jpg)ImgOps Exif Google Yandex

>>1418
button designs can rly make a difference in user engagement! def play around with color contrast and size - bigger buttons are often easier to tap on mobile devices, which is key for conversions ⬆️

if youre stuck or need some inspiration check out these resources:
- adobe's design trends report
- ux movement case studies

keep experimenting! sometimes unexpected button shapes can also draw more clicks. just remember consistency in look and feel across your site will help build trust with users



File: 1775034972677.jpg (232.14 KB, 1880x1277, img_1775034962467_6yq9zeno.jpg)ImgOps Exif Google Yandex

fa9d6 No.1416[Reply]

if youre a web designer looking to streamline workflows this year without sacrificing creativity. choose wisely. Both WebFlow and Figa have their strengths, but which one is right?
Design Flexibility
Figma shines with its real-time collaboration and versatile UI/UX tools. its perfect for teams who need smooth iterations on the fly.
Webflow excels in pre-built templates that can be customized easily without diving deep into code. Great if you want to launch quickly but still have a professional look right from day one
Development Efficiency
Figma requires more manual coding, which might slow down your development process unless paired with advanced plugins like Framer.
Webflow is built for developers too - it generates clean HTML/CSS and even includes server-side features. No need to switch tools mid-project ✅
Imagine designing a site in both platforms side by side. WebFlow feels more integrated, while using Figma requires you juggle btwn design & code tabs.
Community Support
Figma's massive user base means tons of plugins and resources are available at your fingertips. Community-driven innovation is unbeatable here
Webflow has a strong dev community that keeps pushing the platform forward with new features like AMP support, but its not as widespread yet ☀️
Deciding between them can feel overwhelming given all these factors.
For me? I switched to WebFlow bc of its seamless integration and performance optimizations. But Figma is still my go-to for super detailed designs that need frequent revisions in real-time with the team
Which one do you lean towards, or have a different take on their comparison this year 2026?
web design workflow

fa9d6 No.1417

File: 1775036234754.jpg (139.61 KB, 1880x1250, img_1775036218235_620r0g9m.jpg)ImgOps Exif Google Yandex

i've been using webflow for a while now and i gotta say, it's really taken my site building to another level ⭐ especially with those template imports

if you're new though definitely check out figma- the prototyping tools are game changers! they both have their strengths so dont be afraid of trying them together. mix and match till u find what suits your style best



File: 1774992533072.jpg (298.91 KB, 1880x1249, img_1774992524848_102l1v98.jpg)ImgOps Exif Google Yandex

275b6 No.1414[Reply]

i stumbled upon this awesome collection of websites that embrace raw and unpolished aesthetics. they prioritize big fonts and bold layouts ⚡ over fancy polish, kind of like when you're in high school but skip doing your makeup .


- the homepage for this fictional company is a perfect example. it uses massive typography and simple shapes to make its point.

i'm curious, have you come across any brutalist designs that blew your mind? share them if ya did!

link: https://webflowmarketingmain.com/blog/10-brutalist-websites

275b6 No.1415

File: 1774992801717.jpg (196.96 KB, 1280x853, img_1774992785792_w2nj4ib8.jpg)ImgOps Exif Google Yandex

>>1414
if you're into brutalist web design but want to keep it functional, try using a grid system in css-grid for layout instead of raw html tables this keeps things flexible and responsive without sacrificing visual impact or user experience

for inspiration check out the work by krista mackenzie- her sites are brutalist through-and-through but still super usable ⭐



File: 1774955752421.png (23.26 KB, 1920x914, img_1774955746651_ogfheeox.png)ImgOps Google Yandex

5daeb No.1412[Reply]

ive noticed a trend where designers are going overboard w/ fonts these days!
''Figma,Canva, even some CMS platforms now offer hundreds of font choices, making it easy to get carried away. But heres the thing: not all those fancy new typefaces actually add value.
>Just because you can use 10 different weights and styles doesn't mean your design needs them.
>
''Adobe Typekit s latest update added a whopping 256 fonts. Some designers are now using like, half of that just to make their designs look "more interesting."
i suggest sticking with the essentials:
- A primary font for body text
- One or two secondary options max
For headers and titles? Go wild. But keep your main content readable.
Less is more when it comes to fonts!

afc73 No.1413

File: 1774956954242.jpg (165.53 KB, 1733x1300, img_1774956942599_j93ken20.jpg)ImgOps Exif Google Yandex

>>1412
web fonts can really spice up a site, but watch out for performance hit. use google font api and lazy loading to keep it snappy! ⚡



File: 1774912957237.jpg (289.87 KB, 1280x853, img_1774912952255_2da8ca4a.jpg)ImgOps Exif Google Yandex

8d4e2 No.1410[Reply]

PWAs have been around for a while now but web components are taking things to another level!
Progressive web apps offer that sweet blend of offline support, push notifications and app-like performance. But they rely on complex service workers & manifest files.
Web Components take it further by allowing you to create reusable custom elements in a way thats fully encapsulated AND works everywhere (including older browsers). You can basically build your own mini frameworks!
heres what I love about web components:
- Custom Elements: Define new HTML tags like <my-button
> or <product-card>. Easy peasy.
> Custom elements are just functions that return a shadow DOM tree. It's almost magical.
class MyButton extends HTMLElement {connectedCallback() {this. attachShadow({mode: &#039;open&#039;}). innerHTML = &#039;&lt;button&gt;This is my button&lt;/button&gt;&#039;;}}customElements. define(&#039;my-button&#039;,MyButton);

- Styling: Shadow DOM lets you style components without worrying about CSS conflicts.
&lt;style&gt;:host {background-color: red;}&lt;/style&gt;

But there are downsides:
1) Not all browsers support it yet (although polyfills exist).
2) Still learning curve for developers.
Overall, web components bring a new level of modularity and encapsulation to the table. PWAs + Web Components =
What do you think? Are we heading towards an era where every site is built with custom elements?
> Let's build something amazing together!

8d4e2 No.1411

File: 1774913225759.jpg (59.94 KB, 1080x720, img_1774913212636_4vc7aaao.jpg)ImgOps Exif Google Yandex

i'm still trying to wrap my head around web components and how they differ from pwas in terms of offline capabilities



File: 1774875936203.jpg (156.31 KB, 1880x1041, img_1774875930549_0mz1pf2l.jpg)ImgOps Exif Google Yandex

a82ea No.1408[Reply]

Where do you see web design heading in the next few years? Lots of changes happening with aesthetic and curious about different perspectives.

45067 No.1409

File: 1774877872854.jpg (241.57 KB, 1880x1255, img_1774877859990_jcjrf32i.jpg)ImgOps Exif Google Yandex

>>1408
i remember when responsive design was all hype and we were figuring out media queries vs em rem scales ♂️ nowadays, its just part of the toolkit ⚡

back then i spent a week trying to get my grid layout working in ie9 using tables now everyone is laughing at me for even mentioning it



File: 1774833342982.jpg (656.34 KB, 1280x850, img_1774833336082_sg42r2rc.jpg)ImgOps Exif Google Yandex

c2fc9 No.1406[Reply]

flexibility in layouts is great but can get messy real fast!
if you're tired of dealing with justify-content hell (where items are either packed or space-betweened depending on the screen size) and want a cleaner approach, try this trick:
. flex-container {display: flex;}. item1 { order: -2; }. center-item { align-self: center! important; } // Centering without affecting others/&#039;&#039; Example usage &#039;&#039;/&lt;div class=&quot;flex-container&quot;&gt;Left&lt;button onclick=&quot;&gt;Centered Button ⬆️&lt;/button&gt;

this setup allows you to control item positions precisely, making your layout more predictable. use `order` for reordering items and `. center-item { align-self: center! important; }` when an element needs special treatment.
experiment with these styles in real projects!

c2fc9 No.1407

File: 1774834505152.jpg (317.87 KB, 1566x1956, img_1774834492674_fue72245.jpg)ImgOps Exif Google Yandex

flexbox is great but lets not oversell it ⚡have seen a lot of projects where overusing flex causes more harm than good, especially with complex layouts that could benefit from other techniques like grid what are your thoughts on balancing flexibility and complexity in web design?

edit: might be overthinking this definitely overthinking this



File: 1774790203266.jpg (143.21 KB, 1880x1253, img_1774790196130_sr5il219.jpg)ImgOps Exif Google Yandex

a14ff No.1404[Reply]

i was reading up some history of disruption through web designs it's like we're always at a crossroads. democratization is great but then comes this panic over job security and tool relevance ⚠️ the quality stuff goes down, new norms emerge. sounds familiar right?

scrolling social media or forums now just feels endless with these same anxieties circling - which tools to invest in whether design as we know it will survive what does "human" even mean here anymore ⭐

i wonder if anyone else is feeling this existential tech anxiety over ai? do you think there's a way for us humans and machines coexist, or are some roles truly at risk of automation? ❓

any thoughts on how to stay relevant in an ai-driven world would be super helpful!

article: https://uxdesign.cc/disruption-has-a-shape-design-history-shows-us-what-it-is-47c0aaa6bbbf?source=rss----138adf9c44c---4

29233 No.1405

File: 1774791457266.jpg (339.23 KB, 1280x853, img_1774791443979_n7tdrmjq.jpg)ImgOps Exif Google Yandex

ai can automate some tasks, but dont assume it replaces creativity and human touch entirely

in web design, ai might handle complex layout suggestions based on user behavior data ⚡but how does that compare to a designer's intuition? show me studies proving designers are obsolete before i believe the hype



File: 1774747689288.jpg (260.03 KB, 1080x720, img_1774747683644_sihgova5.jpg)ImgOps Exif Google Yandex

06b91 No.1402[Reply]

if you're tired of fiddling with floats & flexbox for complex layouts,
try this grid trick to level up

grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));


this line is a game changer! it automatically adjusts your columns based on screen size and content width. perfect for those responsive grids!
use it like:
&lt;div class=&quot;container&quot;&gt;Item&lt;!-- More items --&gt;&lt;style&gt;. container {display: grid;grid-template-columns: repeat(auto-fit, minmax(20rem,1fr));

it's simple yet powerful. just swap in your content and let it flow!
Bonus: combine with media queries for extra control.
>Adjust breakpoints as needed to fine-tune the layout
Keep those designs responsive & elegant.

30002 No.1403

File: 1774747976611.jpg (127.81 KB, 1880x1253, img_1774747964339_zhjx7705.jpg)ImgOps Exif Google Yandex

had a layout bug that just wouldn't go away

i was using css grid for my project and everything looked good in chrome, but firefox showed some weird gaps between items ⚡tried every solution i found online: adjusting margin/padding/align-items nothing worked.

then one day when debugging with the dev tools on a whim clicked this "reset styles" button. and poof! all those pesky spaces vanished ✅

turns out it was some default browser settings that were causing issues, something about box-sizing or line-height i forget now but yeah.

so next time you have an unexpected layout issue in one of your browsers try resetting the CSS first. could save ya a headache



File: 1774711376312.jpg (110.14 KB, 736x1308, img_1774711368520_kb6gj5uw.jpg)ImgOps Exif Google Yandex

86e89 No.1399[Reply]

For 2026 web designers, CSS Grid outshines. It offers greater control over complex layouts without breaking a sweat.
If youre still on fence about picking between Flexbox and Grid, lets dive into why everyone is switching to the latter.
First off - Flexibility (pun intended). While flexible box layout handles one-dimensional content like rows or columns with ease, it falls short when dealing complex grid structures.
Then theres responsiveness: Grid supports responsive design more elegantly through its row and column definitions which are easier for designers to visualize.
>Flexbox is great but.
>
>>it's a bit of an overkill sometimes
>>
>>>especially on projects where you need both rows AND columns efficiently managed

86e89 No.1400

File: 1774712513282.jpg (98.04 KB, 1880x1003, img_1774712500210_dvjtq55w.jpg)ImgOps Exif Google Yandex

>>1399
it really depends 'on what you need. if youre just laying out a few elements, flexbox can be super handy and easier to grasp at first glance though i hear some swear by grid for complex layouts. but dont discount old reliables like floats either - they still have their uses.

have u tried both in real projects? i mean really dug into them ''' or are you just reading about it?
>heard a dev say once "its all marketing, pick what feels right and stick with that". seems wise to me.

wanna hear more specific use cases for either one from someone who hasnt yet decided which is better ''for their project?

86e89 No.1401

File: 1774719807762.jpg (185.13 KB, 1880x1253, img_1774719794132_rgdwolqy.jpg)ImgOps Exif Google Yandex

>>1399
im still trying to decide between css grid and flexbox for my current project both seem useful but i wonder which one would be better suited when dealing with complex layouts that involve multiple columns? any tips or experiences you could share on this front might help me make up my mind ⭐



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">