Support » Themes and Templates » change css wp 20-12 theme

  • hi,

    i’m try to get rid of the ‘border’ that’s being caused by my background color change. in other words, i would like to have the homepage (or all pages) one consistant color. Here’s the site http://chefsontheedge.com/ and an example of a site i like that i’m going for http://www.gusalexander.com/.

    i have a basic knowledge of how to drop some code into the css style editor and using firebug. thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey dgr30,

    Do you want to remove all the lines from your current theme?
    What about the shadow of the pictures?

    If so I can help you with that.

    Btw other site doesn’t even use WordPress, and I noticed some php warning displaying in your footer.

    Thanks,
    Ivan

    Thread Starter dgr30

    (@dgr30)

    thanks ivan. i guess what i’m really trying to do is just make the body fit the entire browser space so that i can drop some cool stainless steel/kitchen textures/backgrounds/or images into like these http://www.123rf.com/stock-photo/stainless_steel.html

    the problem i’m having is trying to get the theme to cooporate with me!

    cheers!

    david

    Hi David,

    The themes are very cooperative – they just don’t speak human, and not willing to learn it. 🙂

    I am still having problems with some of them using different slangs.

    If you want just to expand the site to the whole screen of the visitors, you can use this plugin – https://wordpress.org/plugins/simple-custom-css/

    Then go to Dashboard -> Add Custom CSS
    and post this snippet:

    site{
      max-width: 100%;
    }

    If you want to remove and the borders that are displayed after every post, you can add the fallowing snipet right after the previous one

    .site-content article{
       border-bottom: none;
    }

    Then you can set up your background in Dashboard -> Appearance -> Background

    Thanks,
    Ivan

    Thread Starter dgr30

    (@dgr30)

    thanks again, ivan. here’s what i have after your suggestions: http://chefsontheedge.com/ . I still can’t figure out how to ‘blend’ the background with the stark white body. i took your advise and dropped in the code to stretch the homepage to 100%, but alas, no luck. i’m surely missing something so pls let me know your thoughts.

    best!

    Hi David,

    It seems I can’t fidn the code from my post in your site.

    Check if there is some missing curly brace.

    If you want to blend the white body with the background you can use this snippet:

    .site {
        box-shadow: 0 0 52px 80px #fff;
    }

    Thanks,
    Ivan

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘change css wp 20-12 theme’ is closed to new replies.