Support Forum
Hey Meztli,
You can remove the sub forum row border in the overlay by changing the value of $inRowSubsBorder. You can assign it an independent colour, or remove it completely using 'none'.
Remember, if you ever need to find out what to change, inspect the element in your browser, copy the classes of what you want to change (in this case #spMainContainer .spInRowSubForums), find that in your stylesheet and it will show which variables from the overlay need changing.
Hope that helps!
Unfortunately not just using the overlay. The rule for the border is in the stylesheet, all that's in the overly is the thickness and colour. If you wanted to change it, just add the following to your child themes stylesheet:
#spMainContainer .spInRowSubForums { border: none; border-top: <?php echo($inRowSubsBorder); ?>; }
The reason it has border: none is because it's overwriting the parent themes rules. Since border-top is a different rule to border altogether you'd end up running both border and border top. Border none get's rid of the border and border-top re-applies it to the top.
Ike said
Have you already changed the value of $inRowSubsBorder to 'none' or a different colour?
Yes in my child theme overlay i did change the color of $inRowSubsBorder. But before getting back to you, i removed my costum overlay and tried all of the original SP overlays and it´s not working with them either.
This is my current child theme css:
#spMainContainer { background: #F8F8F8; } #spMainContainer .spInRowSubForums { border: none; border-top: ; }
Sorry Meztli, been a while since I have used child themes obviously!
The standard child theme stylesheet is a .css file, so PHP won't work. You can either specify a border with a hex colour like:
#spMainContainer .spInRowSubForums { border: none; border-top: 1px solid #FFFFFFF; }
Or you can keep the variable as above and just rename your stylesheet to change the extension to .php i.e reboot-child.php..
Again, sorry for not realizing this yesterday!