Main node border removal?

Dynasty

Member
Hi guys/gals

How do i remove the border that goes around all the nodes on the default skin?

Example:
http://i47.tinypic.com/1zeh3k1.png

Want the orange circular boarder to blend is what i am trying to accomplish but only for main border around all nodes.

Been searching for awhile and cannot seem to find it :|
 
Adding the following in EXTRA.css will remove this.You may not need the importants (i'm sure you won't) But you might want to add the padding back to 10px i assumed you wanted to remove it.

Code:
.forum_list .sectionMain {
    border:0px solid #A5CAE4 !important;
    border-radius: 0 !important;
    padding: 0px !important;
}
 
Adding the following in EXTRA.css will remove this.You may not need the importants (i'm sure you won't) But you might want to add the padding back to 10px i assumed you wanted to remove it.

Code:
.forum_list .sectionMain {
    border:0px solid #A5CAE4 !important;
    border-radius: 0 !important;
    padding: 0px !important;
}

Worked so perfectly, thanks so much shelley
 
This is the sectionMain border.
Just add
Code:
.sectionMain {
    border: none;
}
to the EXTRA.css template in order to make it disappear.

To make it blend with, try this:
Code:
.sectionMain {
    border: none;
    padding: 0;
}

EDIT: Nuclear ninja Shelley.
 
This is the sectionMain border.
Just add
Code:
.sectionMain {
    border: none;
}
to the EXTRA.css template in order to make it disappear.

To make it blend with, try this:
Code:
.sectionMain {
    border: none;
    padding: 0;
}

EDIT: Nuclear ninja Shelley.

Yours will remove the sectionmain border in the forum_view so if The OP is so inclined to remove it there also they should add in .sectionMain as you posted. I assumed they only wanted to remove it from the index page.
 
Top Bottom