PDA

View Full Version : Wierd 3.7 code mess


Flamma
06-29-2008, 06:48 PM
As per example:

http://www.swiigle.com/files/upload/uploads/47195264766039535143.jpg

I've edited the header template, and only just started to work on it(the part that says Forum Home isn't in the navigation template, it's in the header).

I put that in, with my custom class to it, and other bits on the forum change. I've even made it stupid names of the class, in which I know that it won't be the same as other parts of the forum yet they still mess up.

Is there a solution to this?

Thanks,
Dale

Opserty
06-29-2008, 07:48 PM
There is some kind of CSS conflict, that would be the only reason you would get this happening. Check again to make sure a CSS property is not being assigned in-correctly. Else provide a link and I'll take a look.

Flamma
06-29-2008, 08:01 PM
I really doubt that there's a CSS conflict, especially with the CSS class name:

navigationlinky

I've currently got this running on my localhost.

The full code is here: http://www.vbulletin.com/forum/showthread.php?p=1587990#post1587990

It never did this in 3.6 :(

Opserty
06-29-2008, 08:20 PM
.navigationlinky a:link, a:visited, a:active{
Should be:

.navigationlinky a:link, .navigationlinky a:visited, .navigationlinky a:active {

Flamma
06-29-2008, 08:24 PM
Damn, how did I miss that.

Thanks mate ;)