Senior Living
Premium Residential Community
- Fully furnished, luxuriously appointed suites and apartments
- Gourmet vegetarian dining — 3 chef-prepared meals daily
- State-of-the-art wellness centre and fitness facilities
- Beautiful landscaped gardens and relaxation areas
- Housekeeping, concierge and recreation facilities
- 24/7 security with CCTV surveillance and access control
- Organised transport for shopping, hospitals and outings
- Fast WiFi, cable TV and entertainment in every suite
File location should be:
public_html/assets/images/logo.jpg
After upload, open your website with:
Ctrl + F5
or open in private/incognito window.
css is not working
Your CSS file is okay, but your live website is loading old/wrong CSS. In screenshot, browser shows body CSS as background:#102b3a; color:#ffffff;, but the CSS you shared has body background:#fff; color:var(--ink);
So problem is not CSS syntax. Problem is wrong file path / cache / old style.css uploaded.
Do this exact fix.
1. Check CSS file is loading
Open this in browser:
https://sixtypluszone.com/style.css?v=999
You should see your CSS starting like this:
:root{
--navy:#071e2e;
If you do not see this, your style.css is uploaded in the wrong folder.
Correct location must be:
public_html/style.css
2. Fix CSS link in index.html
Inside put only this:
Do not use:
/public/style.css
or
assets/style.css
unless the file is really there.
3. Paste this at the bottom of your style.css
This will force header/menu/logo styling even if HTML classes are missing:
/* FINAL HEADER FIX */
html,
body {
margin: 0 !important;
padding: 0 !important;
overflow-x: hidden !important;
}
body {
font-family: Inter, Arial, Helvetica, sans-serif !important;
}
/* Hide skip link until keyboard focus */
.skip-link {
position: absolute !important;
left: -9999px !important;
top: 0 !important;
background: #ffffff !important;
color: #071e2e !important;
padding: 10px 14px !important;
z-index: 99999 !important;
}
.skip-link:focus {
left: 12px !important;
top: 12px !important;
}
/* Header fix */
.site-header {
background: #071e2e !important;
padding: 16px 0 !important;
position: sticky !important;
top: 0 !important;
z-index: 9999 !important;
}
/* If header has container */
.site-header .container,
.header-inner {
width: min(1200px, 92%) !important;
margin: 0 auto !important;
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
gap: 25px !important;
}
/* Logo fix */
.site-header img,
.brand img,
.logo-img {
height: 62px !important;
width: auto !important;
display: block !important;
object-fit: contain !important;
}
/* Header links fix */
.site-header a {
color: #ffffff !important;
text-decoration: none !important;
font-weight: 700 !important;
}
/* Nav fix */
.site-header nav,
.main-nav {
display: flex !important;
align-items: center !important;
gap: 24px !important;
flex-wrap: wrap !important;
}
.site-header nav a:hover,
.main-nav a:hover {
color: #d59b45 !important;
}
/* CTA button */
.nav-cta,
.site-header nav a:last-child {
background: #d59b45 !important;
color: #ffffff !important;
padding: 12px 22px !important;
border-radius: 8px !important;
}
/* Mobile */
@media (max-width: 860px) {
.site-header .container,
.header-inner {
flex-direction: column !important;
align-items: flex-start !important;
}
.site-header nav,
.main-nav {
flex-direction: column !important;
align-items: flex-start !important;
gap: 14px !important;
}
}
4. Clear cache
After saving:
Go to Cloudflare
Caching → Configuration → Purge Everything
Browser में press:
Ctrl + F5
Then check again.
Most likely your issue will solve after style.css?v=999 because right now browser/Cloudflare is loading old CSS.
Pasted text(13).txt
Document
in also add the css
I added your CSS inside the HTML file, so it will work even if style.css is not loading from cPanel. Your uploaded HTML was linking external CSS as style.css, which can fail due to wrong path/cache.
Download this file and upload it as:
public_html/index.html
After upload, rename it to:
index.html
Then open website and press:
Ctrl + F5
One more thing: your logo path is still:
So logo file must be here:
public_html/assets/logo.png