• Resolved Ollieh

    (@olliehhh)


    So I was cleaning out my media library and not knowing what it was, I accidentally deleted my bg-image for good. Now, whenever I try to customize my site, there’s always an error 404 because my bg-image is missing and I don’t know how to replace it because it is still requesting that same one that I deleted from 2015. Now the site is a mess and I need help desperately because it is falling apart. Anything I can change in the javascript/css in the editor and if so where? Please help, I’m in desperate need.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Joey

    (@leglesslizard)

    Hey,

    Looking at the link provided it appears the class that needs changing is bgimage

    Within your css file you should be able to alter the background like so:

    .bgimage {
        background-image: url('http://www.mcaftercare.org/wp-content/uploads/2018/05/my_new_background_image.png');
    }

    It appears all of these images are in the same place so if that doesn’t work you can try being more specific like this:

    .jcyclemain .bgimage {
        background-image: url('http://www.mcaftercare.org/wp-content/uploads/2018/05/my_new_background_image.png');
    }

    Or as a last resort, forcing your style to override all others like so:

    .bgimage {
        background-image: url('http://www.mcaftercare.org/wp-content/uploads/2018/05/my_new_background_image.png') !important;
    }

    Obviously, replacing the path to match the path of your background image!

    This can be done in your theme’s style.css (preferably your child theme’s style.css as this change will be lost if you update your theme otherwise! See https://codex.wordpress.org/Child_Themes for more info). Or if your theme offers a way to add additional css then you can add it there.

    Hope that helps!

    Kind regards,
    Joey

Viewing 1 replies (of 1 total)
  • The topic ‘wp site not customizing’ is closed to new replies.