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

css correction for you next update - Macabre | Forum

dave Leader
dave Jun 19 '13

Here is a small css correction that you should probably make on your next update.  

 

You made a small error on line 5278  the section is below.

 

.ow_sort_control a.active,
.ow_sort_control a:hover{
 color:#feb855; /** OW_Control key:titleColor **/
 text-decoration:none;
 background: transparent url('images/box_menu_active.gif') repeat-x  left top;
}

 

the issue is this line here

background: transparent url('images/box_menu_active.gif') repeat-x  left top;

 

the problem is that with the tranparent background in this statment you see the white background of the gif image as in the attached support image below

 

 

 

all that needs to be done is change the line to read as follows.

 

background-image: url('images/box_menu_active.gif') repeat-x  left top;  /* removed transparent added -image */

 

i removed the transparent and also added -image 

 

Thanks..

The Forum post is edited by dave Jun 19 '13
dave Leader
dave Jun 27 '13

In addition you shoud be able to change title color values in theme admin section without affecting the menu links. 

 

In other words on the index page i want to change the color of Join our community but if i change that color, the main top menu link colors change as well. 

Oxwall Software
Oxwall Software Oct 8 '13
Hi Dave,

Sorry for the late reply.

1. transparent background. I wasn't able to reproduce this.

2. by "index" page you mean www.sitename.com/join page?
dave Leader
dave Oct 9 '13

its just the title color css  in the admin theme menu is linked to two places, the menu and also the title of the pages such as yes the join page title.

 

Strange that you could not duplicate the white background though, i was using IE at the time i believe.

 

 

You do not have permission to reply this topic