Your changes are not fully reflecting because the existing styles are being cached by the oxwall server, so you need to clear that. One way to do it is to use the cache extreme plugin ( if you dont already have it I dont think its available in the store anymore). You can also change your site into dev mode by editing the file /ox_includes/config.php, and changing the following (there are two instances; change the second one ):
define('OW_DEV_MODE', false);
to
define('OW_DEV_MODE', true);
Save the file and refresh your page. Then change the file back.
Thank you!
I had tried this several times including Cache Extreme to no avail, but I checked eached of these things again and also cleared browser cache. This worked for all but the following:
1) The drop down menus under User and Admin buttons are white rather than black (both site and admin panel.)
2) The header beneath Customize This Page on the Forum and Main pages is black instead of gray.
I have to add the following strings to EDIT CSS in order to get the desired results for the dropdown menus:
.ow_console_dropdown_hover:hover {
background: #000; /* url(images/console_active_item_bg.png) repeat-x 0px 0px;*/
border-color: #8b8b8b;
cursor: pointer;
color: #fff;
}
.ow_console .ow_tooltip_body {
background:#000;
border: 1px solid #363636;
-webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.4);
-moz-box-shadow: 0 2px 8px rgba(0,0,0,0.4);
box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
And this for the gray headers:
.ow_highbox_table .ow_highbox,
.ow_highbox
{
background-color: #a4a8ab;
}
All of which is already in the base.css file. Any ideas?