Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
All WordPress themes are different. This theme has some styling that applies blue white and grey background images on-top of your background.
I suggest switching to a theme that has a style you’re happy with.
Hi Andrew,
Thank you for the quick response!
Just a quick question in that because I want to avoid changing the theme if possible – is there any way for me to find and remove this styling in the CSS instead of changing the theme!? (im not a code writer at all so it could be in the other functions, header etc – sorry about this!)
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Do you have a section in the dashboard named, “Custom CSS”, “Custom Styles” or “Jetpack”, or are you using a Child Theme?
Im not using a child theme – When I click directly on dashboard I cannot see any of the above – however I have jetpack installed and have an edit css on the appearance tab and have the usual php templates when I click on editor – sorry im not being as clear as possible!
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
In Jetpack’s Custom CSS section, enter this;
#pageswarp,
#headerwarp,
#leadwarp,
#containerwarp {
background: none;
}
Thank you Andrew – that actually worked and the background was overridden!!
I just have one more question about it which you may be able to help with – If i wanted the background to only kick in after the blue line so it would go
blue
grey
blue
background (instead of the partial grey then background starting again)
if not no worries – hopefully I can use what you have taught me to work around with something i.e. editing the image perhaps –
Many thanks!!!
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
In the code that I recommend, this is what each line represents;
#pageswarp – First blue background
#headerwarp – First grey background
#leadwarp – Second blue background
#containerwarp – Second grey background
So you have an idea on what you need to change to just have the second grey background hidden. You need to amend that code I recommended to this;
#containerwarp {
background: none;
}
Thanks so much – I will take that and apply it & hopefully it will all work! Seriously appreciated! 🙂