helloooo i am new to this forum joined to speak to people of a like mind i would really love to share my work with people and find out what i could do to improve.
go to
feel free to criticise
helloooo i am new to this forum joined to speak to people of a like mind i would really love to share my work with people and find out what i could do to improve.
go to
feel free to criticise
As shared example sites and pointed to the site-review area, a short, focused CSS checklist can produce faster, more useful feedback and immediate visual improvements.
@media (min-width: ...) breakpoints; prefer Flexbox or Grid and use gap to keep spacing predictable. html, use rem for scaling, one or two web-safe/hosted fonts, and consistent line-height. :root variables and group rules (reset → base → layout → components → utilities). Consider a naming convention (BEM or scoped classes) to avoid specificity fights. A minimal, modern pattern to adopt:
:root{
--brand: #1266f1;
--gap: 1rem;
--base: 16px;
}
html{font-size:var(--base);}
.container{
display:grid;
grid-template-columns:1fr;
gap:var(--gap);
}
@media (min-width:768px){
.container{grid-template-columns:1fr 320px;}
} For fundamentals and examples see MDN Learn CSS and to validate styles use the W3C CSS Validator. Good review posts include screenshots (desktop and mobile), a short list of priorities (navigation, typography, performance), and any browser or CMS constraints.
Jump to Post— FC Jamison 31There is actually an entire section of this site dedicated to website reviews.
You will find people there to assist you.
There is actually an entire section of this site dedicated to website reviews.
You will find people there to assist you.
thankyou
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.