Changing blocks to default?

Sway

Active member
Hey there i'm using the Minecraft style on my website, and i'm trying to replace the blocks custom top bar with the default so it looks less tacky on the site if anyone knows where i can go to replace them i would really appreciate it. :)

I cant stand this grass, and dirt...​
vfCrA.png
 
Hey there i'm using the Minecraft style on my website, and i'm trying to replace the blocks custom top bar with the default so it looks less tacky on the site if anyone knows where i can go to replace them i would really appreciate it. :)

I cant stand this grass, and dirt...​
vfCrA.png

You might want to check in the admincp >> Appearance >> style properties >> sidebar and check to see if any alterations were made in there. Alteraviley if nothing was touched in there check your extra.css Template.

if the alterations reside in your extra.css template check for the following:

Code:
.sidebar .section .primaryContent h3, .sidebar .section .secondaryContent h3 {
    background-image: url("styles/minecraft/xenforo/grass.gif");
    background-position: center top;
    background-repeat: repeat-x;
    color: #FFFFFF;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 14px;
    margin: 15px -15px 0;
    padding: 26px 15px 10px;
    position: relative;
    top: -16px;
}
.sidebar .primaryContent, .sidebar .secondaryContent {
    background: url("styles/minecraft/xenforo/content-bg.png") repeat-x scroll center top #FCFCFF;
    border: medium none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    padding: 0 15px 15px;
}
 
Top Bottom