i need to change the text colour code for my dawn theme on both the home page and the product page, how do i do this? currently i see a grey, i want it as black as possible
On the themes list, Customize → Theme settings → Colors → Schemes, click on your schema and change the text color to black (#000000).
i have already made this change, but i only see the colour black in the product description. if i insert any section with image and text both on the home page and on the product page, a colour similar to grey comes out, and i want it completely black
Can you share. screenshot or link?
tilma.it
as you can see the text both on the home page and on the product page in the sections has a greyish colour
try to add this css:
.color-scheme-1{
color: #000 !important;
}
Hi @lf_2
This is Henry 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 base.css
Step 3: Paste the below code at bottom of the file → Save
body, .color-background-1, .color-background-2, .color-inverse, .color-accent-1, .color-accent-2 {
color: black !important;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
dove devo aggiungerlo ? base css. ??
yes
grazie! ha funzionato…mi sapresti dire anche come mettere le immagini a tutto schermo senza bordi ai lati?
Please mark my answer as a solution, which image you want to change?
images added by the theme editor ‘images with text’, there are 3 on the home page and one on the product page
you can try something like that:
div[class*="image_with_text"] .page-width{
padding: 0 !important;
}
in base.css ?
yes
it works, but there is still a small margin on both the right and the left side check it too
and I would like them in full screen even from a PC (as in the url I leave here)
replace the previous code with this:
div[class*=image_with_text] .page-width {
padding: 0 !important;
max-width: unset;
}
there is still some margin, check
could you give me more help in solving this problem?