• Hi folks, my website

    I have entered the following code into my ifeature css (child theme),

    .widget-container {
    	background: transparent;
    	border: none;
    }

    When you scroll you can still see a little trace of the border. I have tried border:0px; and it did not work either. Any ideas?

Viewing 3 replies - 1 through 3 (of 3 total)
  • It’s the box shadow in this code:

    .widget-container {
        -moz-border-bottom-colors: none;
        -moz-border-image: none;
        -moz-border-left-colors: none;
        -moz-border-right-colors: none;
        -moz-border-top-colors: none;
        background: none repeat scroll 0 0 #FFFFFF;
        border-color: #CCCCCC #BBBBBB #BBBBBB #CCCCCC;
        border-radius: 4px 4px 4px 4px;
        border-style: solid;
        border-width: 1px;
        box-shadow: 0 0 2px #CCCCCC inset;
        color: #222222;
        margin-bottom: 20px;
        padding: 0 10px 10px;
    }

    so add “box-shadow: none;” to what you have entered.

    Thread Starter smoker450

    (@smoker450)

    WPyogi, you are strike again. Thank you so much, don’t suppose I could drop another Q on you?

    I am trying to center the bottom hotwire add, it is code from their site. I added style align=”center” and it did not work. I can enter style align=”right” and it goes to the right, so I think I am close. Just going to keep playing around, I really love this stuff and it makes it all the more better when you and emsi offer the support you do.

    Thanks again!

    Thread Starter smoker450

    (@smoker450)

    thanks for your post, now I know that when I find out the code like .widget-container I can go look at the code for clues as to what styling is in there. Teaching me to fish.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I almost have my sidebar transparent’ is closed to new replies.