Hi,
id like to change this message to full screen after submission and have the background white with black font.
https://lux360.net/pages/marketplaces?contact_posted=true#contact-us-page
A user wants to modify their contact formβs success message to display full-screen with a white background and black text.
Solutions Provided:
Multiple developers offered CSS code snippets to achieve this customization:
Basic styling approach: Add CSS targeting .form-success or .note.form-success with color: #000 and background-color: #fff
Full-screen implementation: Include additional properties like position: absolute, width: 100%, height: 100%, and z-index: 1 to make the message cover the entire viewport
Implementation Steps:
All solutions follow similar approaches with minor variations in CSS properties and file placement. The discussion remains open with no confirmation from the original poster about which solution worked.
Hi,
id like to change this message to full screen after submission and have the background white with black font.
https://lux360.net/pages/marketplaces?contact_posted=true#contact-us-page
Hi @Luxurymrkt
You can do that by adding this code to Custom CSS in Online Store > Themes > Customize > Theme settings
#contact-us-page .form-success {
color: #000;
background-color: #fff;
margin-left: -16px;
margin-right: -16px;
}
You can add the following css code to do full screen.
.form-success{
color: #000;
background-color: #FFF;
border-color: #000;
padding: 10px;
margin-bottom: 20px;
height: 100%;
position: absolute;
z-index: 1;
width: 100%;
}
Hi @Luxurymrkt
This is Amelia from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.css
Step 3: Paste the below code at bottom of the file β Save
p.note.form-success {
color: black;
background: white;
}
Hope that my solution works for you.
Best regards,
Amelia | PageFly
Step 1: Go to Shopify Admin β Online Store ->Theme β Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above
Result:
If it helps you, please like and mark it as the solution.
Best Regards ![]()
Hello @Luxurymrkt
Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.
.note.form-success {
color: #000 !important;
background: #fff !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks