Viewing 8 replies - 1 through 8 (of 8 total)
  • Theme Author ronangelo

    (@ronangelo)

    You can add this on Frontier Options -> Custom CSS

    #content article {
        background-color: #777777;
    }
    Thread Starter shortles

    (@shortles)

    It worked! Thanks Ron!

    Thread Starter shortles

    (@shortles)

    How do I remove the box and shadow from that same page?
    I saw you posted this for a different question:

    article.blog-view, article.single-view, {
    border: none;
    box-shadow: none;
    }

    But that didn’t work for this.

    Theme Author ronangelo

    (@ronangelo)

    But that didn’t work for this.

    I’m looking at your article and it doesn’t have any border or box-shadows. You’re probably referring to something else.

    You also have redundant css. You can just remove the first one and change the 2nd background color to #777777.

    #content article { background-color: #777777; }
    
    article { background-color: #F5F5F5; border: none; box-shadow: none; margin: 0; padding: 0;}
    Thread Starter shortles

    (@shortles)

    I made an image and circled a portion of the border I’m referring to that I want to get rid of:

    View post on imgur.com

    Looking at your image, that box-shadow is on the main container itself, so try this in your custom CSS plugin:

    #container {
        box-shadow: none;
    }
    Thread Starter shortles

    (@shortles)

    That’s it! You’re the best!

    how can i change the color outside the content box but inside the main area

    precisionadplacement.com – i want to change the bright yellow…thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Change color inside box’ is closed to new replies.