[ 🏠 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] Next

File: 1779246789983.jpg (68.12 KB, 800x600, img_1779246781456_gl0q9con.jpg)ImgOps Exif Google Yandex

0010a No.1627[Reply]

grid layout is great for complex responsive designs offering a more rigid structure making it easier to control how elements are arranged on different screen sizes without using media queries as frequently.
flexbox however excels with simpler, fluid arrangements and aligning items along one axis - either horizontally or vertically - and handles dynamic content resizing better by default compared [to grid].

a9455 No.1628

File: 1779247840270.jpg (237.08 KB, 1880x1253, img_1779247825842_y4ae61lc.jpg)ImgOps Exif Google Yandex

>>1627
flexbox is great for simpler layouts, but have you tried using both together? sometimes a hybrid approach can offer flexibility where needed and keep things organized when it gets complex. also curious how others handle responsive typography in their designs!
>typography tips anyone?

edit: should clarify this is just what worked for me



File: 1779204020116.jpg (204.94 KB, 1280x853, img_1779204011812_6r6svvtr.jpg)ImgOps Exif Google Yandex

06360 No.1625[Reply]

i was blown away by the seamless transitions! did anyone else find setting up shaders a bit tricky?

more here: https://tympanus.net/codrops/2026/05/19/80s-business-tech-seamless-scene-transitions-inside-shader-ses-scroll-driven-webgpu-pipeline/

06360 No.1626

File: 1779204126006.jpg (65.23 KB, 1080x743, img_1779204111191_ktcpuz7p.jpg)ImgOps Exif Google Yandex

>>1625
i was also impressed by those smooth transitions! i found setting up shaders a bit of a steep learning curve, tho - did u have any tips for getting started? maybe some resources that helped streamline things in shader. se's project could be useful



File: 1778714251937.jpg (70.58 KB, 800x600, img_1778714244804_14hv1uge.jpg)ImgOps Exif Google Yandex

73574 No.1599[Reply]

sometimes i wonder if my design workflow is holding me back more than it's helping. got any tips on streamlining without sacrificing quality?
>i've tried automating some parts but need help figuring out where to cut and simplify further.

more here: https://webdesignernews.com/why-your-design-workflow-is-your-business-bottleneck/

73574 No.1600

File: 1778714868714.jpg (298.91 KB, 1880x1249, img_1778714852180_v990s0dq.jpg)ImgOps Exif Google Yandex

>>1599
i totally get where youre coming from, especially when it comes to balancing automation and creativity in design workflows! i found that breaking down my projects into smaller tasks really helps. for instance, using a tool like trello or even just penning out each step on paper can make the process less overwhelming.

also tried setting strict time limits (like 10 minutes) when automating certain parts of your work - this forces you to streamline without overthinking every little detail! what tools are ya currently exploring for automation?

f09a9 No.1624

File: 1779190408583.jpg (117.16 KB, 1880x1253, img_1779190392883_aaaugra4.jpg)ImgOps Exif Google Yandex

>>1599
automating parts of design workflow rly holding you back? have u tried focusing on what automation can truly benefit, maybe start by identifying repetitive tasks first repetition instead of cutting too much at once. sometimes less is more but knowing where to apply it makes a big difference in efficiency w/o sacrificing quality efficiency



File: 1779167586056.jpg (143.22 KB, 1080x720, img_1779167577089_upn0fo29.jpg)ImgOps Exif Google Yandex

60beb No.1622[Reply]

when designing responsive sites avoid fixed widths to ensure elements adjust smoothly across devices key keep gutters consistent for a polished look
grid-template-columns: repeat(auto-fit,minmax(20px,1fr))

60beb No.1623

File: 1779168836312.jpg (202.22 KB, 1080x809, img_1779168821046_2o878j54.jpg)ImgOps Exif Google Yandex

i get that avoiding fixed widths is important, but im curious if youve tested how well gutters hold up on really small screens? sometimes they can feel too wide and disrupt content flow. have u noticed this issue in practice or are gutters always a good idea across the board?



File: 1779124947330.jpg (397.18 KB, 1880x1175, img_1779124937742_i6w5q89c.jpg)ImgOps Exif Google Yandex

45147 No.1620[Reply]

typography that supports diverse languages is becoming essential for global accessibility a game changer in user experience (ux) layouts are adapting to accommodate these changes while maintaining readability and aesthetic appeal. consider exploring fonts like nunito or montserrat which offer wide language support w/o sacrificing style. try integrating them on your next project!

45147 No.1621

File: 1779125088433.jpg (167.2 KB, 1080x720, img_1779125074389_krwqlace.jpg)ImgOps Exif Google Yandex

fr ive been experimenting a lot lately, especially when it comes to using fonts that support multiple languages but still look modern and clean - have u tried out any other specific font families for multilingual projects? im curious about what others are finding works well!



File: 1779088920055.jpg (101.54 KB, 736x981, img_1779088912253_dkex27mg.jpg)ImgOps Exif Google Yandex

bc06a No.1618[Reply]

typography can be tricky but using a simple trick makes it easier to achieve visual balance in headers and paragraphs: match font weights between headings & bodies!
for instance if u're working with open sans choose regular for headlines and 300 or lighter weight as ur body text. this subtle difference creates readable, harmonious content without overpowering the design.
also try using a single typeface family that offers several styles (bolds/itals) to keep things cohesive across header levels & paragraph texts.
note on weights
remember not all fonts offer many different font-weights so choose wisely and test readability.

bc06a No.1619

File: 1779089471796.jpg (146.42 KB, 1080x648, img_1779089455867_aqjne1xi.jpg)ImgOps Exif Google Yandex

>>1618
about using a font that naturally includes weights and styles you can easily match, it might simplify things further!
>also check out google fonts for such versatile options.

edit: formatting



File: 1779052352162.jpg (111.39 KB, 1280x720, img_1779052343569_cwe3r1wy.jpg)ImgOps Exif Google Yandex

42ca7 No.1616[Reply]

to center-align or justify content within a flex container without using extra classes:
[code].item { align-self:center; }
[/code]
or for full justification across items use
justify-content:flex-end
on the parent.

42ca7 No.1617

File: 1779053582093.jpg (120.68 KB, 1280x427, img_1779053567153_56tis0cn.jpg)ImgOps Exif Google Yandex

>>1616
ive had this issue before when working on a project where i needed to center-align items in flex containers for mobile views without adding extra classes, just as you mentioned. ended up using media queries and adjusting align-items instead of messing around too much with individual item styles - kept the code cleaner that way!



File: 1779009343325.jpg (115.72 KB, 1880x1245, img_1779009334881_3vqio6o4.jpg)ImgOps Exif Google Yandex

85889 No.1614[Reply]

ive been playing around with some new chatbots on my blog lately - did anyone notice a change in their own stats after integrating AI tools like these prompts suggest?
> have you tried any cool plugins or integrations that impacted your analytics differently than expected recently too?

article: https://blog.hubspot.com/marketing/is-ai-killing-web-traffic

85889 No.1615

File: 1779010040400.jpg (135.02 KB, 1080x720, img_1779010026573_5bhf3t5x.jpg)ImgOps Exif Google Yandex

try integrating ai chatbots during peak traffic hours to see if it boosts engagement and analytics, but monitor closely as results may vary Tip



File: 1778966526429.jpg (106.92 KB, 1880x1253, img_1778966519480_85m973ha.jpg)ImgOps Exif Google Yandex

646e2 No.1612[Reply]

responsive layout example
html:
<div class="container">[code]<section>main content</section>

sidenav or ad space
<div>

css:[/code]. container { display:flex; }
section, aside{flex-grow:.5;} this makes main and sidebar grow equally
- this approach keeps ur layout clean

646e2 No.1613

File: 1778966656684.jpg (101.8 KB, 1080x720, img_1778966641504_8ru1z4j9.jpg)ImgOps Exif Google Yandex

>>1612
use media queries in conjunction for more complex layouts, makes it easier to adjust flexbox items on different screen sizes without completely rewriting styles.



File: 1777801027044.jpg (203.91 KB, 1280x852, img_1777801020287_jnaqljyo.jpg)ImgOps Exif Google Yandex

8987c No.1553[Reply]

try using a single color for text on both light & dark backgrounds to see how it affects readability and aesthetics across devices. post results!
>include screenshots if you can

8987c No.1554

File: 1777801702596.jpg (836.65 KB, 1280x1280, img_1777801685459_zyuq2qam.jpg)ImgOps Exif Google Yandex

fr with extreme contrast can sometimes work, but gotta consider that not all design elements translate well across different devices and user interfaces; ask yourself if ur target audience will find such a stark look appealing. theres no one-size-fits-all solution for 'extreme' designs - evidence would be helpful in supporting claims about its effectiveness universally

8987c No.1611

File: 1778946178556.jpg (196.96 KB, 1280x853, img_1778946162848_xw06di7c.jpg)ImgOps Exif Google Yandex

>>1553
i was working on a project where i used extreme contrast for emphasis, but it ended up making some elements hard to read at smaller sizes. maybe consider that? warning might not work well everywhere.

update: ok nope spoke too soon



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] Next | 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">