Customization > Themes and Graphics

SP / Theme spacing issue

<< < (2/3) > >>

420connect:
Sorry, I mean - even after adding it to the body, it seems to be ignored..

I find when I uncheck the box to disable the background/body of the block, my margin-left takes effect but with the box checked, it's like it's ignored.

Also, playing around with inspect element, I've found if I ad "style="margin-left: 5px" to the line "<div class="windowbg"> that is a part of the block, I achieve what I am looking for but I'm not sure how to implement it properly..

♦ Ninja ZX-10RR ♦:
Given that the theme has a very very weird behaviour and you are completely right... Scratch all the above and:
-Find
--- Code: ---#sp_right {
    vertical-align: top;
--- End code ---
around string 257 in your portal.css
-Make it like this:

--- Code: ---#sp_right {
    vertical-align: top;
    padding-left: 5px;
--- End code ---
-Set the right blocks width to 205px instead of 200

At least like this it should work and theme shouldn't be able to mess it up again xD

420connect:
Woohoo!

I was about to say that never worked either but I forgot .css edits can take a bit to show - after a few refreshes that worked perfectly :D!

You and your ninja skills!  :applause:

Many thanks as always!

♦ Ninja ZX-10RR ♦:
Glad that it did the trick :D

Burke Knight:
Just a note. You'd need to do same thing, a bit differently, if have left side blocks, too.
I have mine set at 10, instead of 5, but here is for both sides.


--- Code: ---#sp_left
{
vertical-align: top;
    padding-right: 10px;
}
#sp_right
{
vertical-align: top;
    padding-left: 10px;
--- End code ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version