We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

site panel border color | Forum

Topic location: Forum home » Support » General Questions
Munawar
Munawar Jan 28 '16
how to add site panel border i want to change color of the border thankx 
Darryl B Leader
Darryl B Jan 29 '16
Depends on your theme. If you are still using the Simplicity theme, you could use this.

.ow_site_panel {
     border-color: your color;
}
You can do a search for "css border" to see other settings like border-style, border-size.
Munawar
Munawar Jan 29 '16
its not changing border color 
Darryl B Leader
Darryl B Jan 29 '16
The site panel is the one at the top of the page that holds the nav menu, and console items. It actually didn't have a border. Is this what you are talking about?
Munawar
Munawar Jan 29 '16
yes 
Darryl B Leader
Darryl B Jan 29 '16
Can I get your site url. Using inspect element and seeing it is sometimes easier.

Darryl B Leader
Darryl B Jan 29 '16
You could try this.
.ow_site_panel {
    border: 2px solid black;
}

This will set a border width of 2px that is solid, and black. If it works you can modify it as needed for color, and size.
Munawar
Munawar Jan 29 '16
thankx its working 
Munawar
Munawar Jan 29 '16
its showing border on both sides uper and lower is there any way to show on lower site only thankx 
Darryl B Leader
Darryl B Jan 29 '16
Yes. using border sets automatically sets all the way around. change it to this.

.ow_site_panel {
    border-bottom: 2px;
    border-style: solid;
    border-color: black;
}

That should do it.
Munawar
Munawar Jan 30 '16
its working thankx :) 
The Forum post is edited by Munawar Jan 30 '16
Darryl B Leader
Darryl B Jan 30 '16
Yeah. Success. I knew I had the right element. I had to add the border to my theme a while back. That's how I knew it didn't have one. At least it didn't then.
ross Team
ross Jan 31 '16
Thanks Darryl