In widgets, the primary aside displays with a 1px #ccc border.
The secondary aside displays with NO border.
Where in which css do I edit to add a border to the secondary aside?
In advance, much and many thanks.
In widgets, the primary aside displays with a 1px #ccc border.
The secondary aside displays with NO border.
Where in which css do I edit to add a border to the secondary aside?
In advance, much and many thanks.
add this to your css
#secondary {
border:1px solid #ccc;
}
You must log in to post.