Log in

View Full Version : Css question


RichieBoy67
03-02-2014, 06:21 PM
Hello all,

I am trying to remove some extra spacing. The first one is part of the welcome box element. It is the large empty light grey space I want to remove.


https://vborg.vbsupport.ru/external/2014/03/70.png

The next one sits underneath the above image. For a better look visit the site please

http://musclemecca.com I want to remove that white space above the forum. I have not yet even looked into this one so I am not sure but it could just be a stylevar margin and very simple. I just figured I would post it here with the other one in case.

https://vborg.vbsupport.ru/external/2014/03/71.png

Thanks,
Rich

tbworld
03-02-2014, 07:32 PM
@RichieBoy Pass me or post a link to your forum so we can help. :)

RichieBoy67
03-02-2014, 07:46 PM
Thanks, really appreciate it. The link is in the code block. I just didn't want a live link posted here.

tbworld
03-02-2014, 07:49 PM
Thanks, really appreciate it. The link is in the code block. I just didn't want a live link posted here.

Sorry, I looked but missed it somehow. :)

RichieBoy67
03-02-2014, 08:11 PM
No worries :)

tbworld
03-02-2014, 08:18 PM
Hello all,

I am trying to remove some extra spacing. The first one is part of the welcome box element. It is the large empty light grey space I want to remove.


https://vborg.vbsupport.ru/external/2014/03/70.png



This controls the background, I believe you are trying to eliminate.

.welcomeBoxRight {
background: url("images/styles/scarydark/style/welcomeRight.gif") no-repeat scroll right top rgba(0, 0, 0, 0);
padding: 10px 0 0;
}


Add this to the bottom of your CSS to confirm.

.welcomeBoxRight { background: yellow !important; }


Is that the right area?

RichieBoy67
03-02-2014, 08:42 PM
Nope, that does not do anything. Thanks. I did tons of css work on this site so I probably messed this up.

--------------- Added 1393800546 at 1393800546 ---------------

Let me check the template more to see what I did. I am thinking it is not a css issue now.

--------------- Added 1393800782 at 1393800782 ---------------

Never mind, I see the issue.

I added a conditional awhile ago that shows a register image to guest users only. I had a couple <br /> tags after the closing tag for the conditional.

Thanks bro!