PDA

View Full Version : Odd bars on my site. HALP!!


MMaster
10-01-2007, 08:15 PM
Hey, guys. I'm in need of some help. I asked a friend of mine to help me with some of the things I wanted to get done on the site. One of them being moving user log in.log out information to the top left corner and a nav bar to the to right. Upon my friends completion with this task, bars started to show up on the left and right sides of vBulletin and vBadvanced. I would like these removed but my friend is stumped. He doesn't seem to be seeing them but myself and everyone else I've asked does. Does Anyone have any ideas on how I can resolve this issue? It would be GREATLY appreciated.

Thanks,
James

Media-Gamers.com (This is the problem site)

Lynne
10-01-2007, 08:16 PM
A picture will probably help. Or a link to the forum so we can take a look at the source code (whoops, I saw you did post a link).

And one more edit.... I don't see these bars you are talking about. Perhaps a picture will help.

MMaster
10-01-2007, 08:41 PM
Absolutely:

http://img233.imageshack.us/img233/7601/homeny0.gif (http://imageshack.us)

http://img221.imageshack.us/img221/1459/forumos9.gif (http://imageshack.us)

And thanks for showing interest in helping me with my problem =D

Spank
10-01-2007, 08:49 PM
I don't see the bars on the site either, but tbh i think they look kinda cool.

Lynne
10-01-2007, 10:07 PM
It looks like somehow a background image was added and it happens to be the same as the category strips.

OK, I just looked at your CSS and under .alt2 and .alt2, you have this for the background url "url(images/dark_vb_v2/gradients/)" That does not look valid to me (the actual image name isn't given) and I wonder if that is causing you problems. The same thing under .panel ("images/gradients/gradient_panel" is invalid)

Freesteyelz
10-01-2007, 11:31 PM
It looks as if your navbar's gradient, which starts at the very top (above header), is repeating vertically. Whenever you set a background image you should always set the properties. In your line of code you have:


style="background-image:url(images/dark_vb_v2/misc/nav_x.gif)"


Try changing that to:


style="background:#000000 url(images/dark_vb_v2/misc/nav_x.gif) repeat-x top left"

MMaster
10-01-2007, 11:56 PM
It looks as if your navbar's gradient, which starts at the very top (above header), is repeating vertically. Whenever you set a background image you should always set the properties. In your line of code you have:


style="background-image:url(images/dark_vb_v2/misc/nav_x.gif)"


Try changing that to:


style="background:#000000 url(images/dark_vb_v2/misc/nav_x.gif) repeat-x top left"


Thanks so much for your help. That fixed part of the problem. Now, instead of there being bars on the sides, it's just black. It takes up the same amount of space as the bars did but it's just black. If requested, I'll post a screenshot. Ideas?

Thanks! =D

Edit: Okay, the black bars are gone. Problem solved =D

Now there's another issue. The width of the Forum, User CP, Front Page, etc. has become inconsistent. It's thinner on the front page and post pages than it is on the forum and User CP pages. Any ideas on that one?

Freesteyelz
10-02-2007, 03:06 AM
I'm glad the first problem is resolved. :) As for your current issue, if possible, please take screenshots (and point out what you want changed) so we can compare the style inconsistencies.

MMaster
10-02-2007, 04:09 AM
No problem. Here they are:

Home
http://img210.imageshack.us/img210/7028/homeqz2.gif

Forum (Wider than Home page)
http://img223.imageshack.us/img223/2285/forumlk9.gif

Threads (About the same as Home, but a little wider)
http://img457.imageshack.us/img457/3787/threadsio6.gif

Thanks so much for the help!

Dismounted
10-02-2007, 04:48 AM
You'll need to play around with the Main Table Width (in StyleVars).

Freesteyelz
10-02-2007, 06:40 AM
I measured the Home and Forum Home pages using IE and Firefox. The widths of the content and overall Table are identical. Though, your screenshots show up differently.

MMaster
10-02-2007, 09:31 PM
I measured the Home and Forum Home pages using IE and Firefox. The widths of the content and overall Table are identical. Though, your screenshots show up differently.

Yea, it's weird. Some people (like me) are seeing it like it appears in the screenshots while other are experiencing no problems at all.

Freesteyelz
10-03-2007, 02:03 AM
It may be a CSS issue. I would comb over your codes, CSS in particular, starting at the top nav and then header. Eliminate those two sections one at a time and see if it fixes your issue. If it does then you'll know the area to focus on.