vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Design and Graphics Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=253)
-   -   My forum top block overlaps (https://vborg.vbsupport.ru/showthread.php?t=314401)

spd2612 09-19-2014 01:15 PM

My forum top block overlaps
 
My forum top block overlaps the blocks below it without any padding. I have disable my adds in that block, that did not help and I disabled the Garage block below it it then just overlaps the forum.
I am attaching a screen shot to show you what I mean.
I am sure it is just a edit of a CSS or template but I do not know which one.
Vbulletin 4.2.0 Patch Level 4

https://vborg.vbsupport.ru/external/2014/09/14.png



you can see how the add block underlaps

Lynne 09-19-2014 04:08 PM

When dealing with CSS issues, it is impossible to tell what is going on from just an image. It is easier to use a tool like firebug to view the CSS and see what is happening. So, can you please supply a link and a test username/password, if needed, to see the problem.

spd2612 09-19-2014 04:24 PM

Quote:

Originally Posted by Lynne (Post 2515774)
When dealing with CSS issues, it is impossible to tell what is going on from just an image. It is easier to use a tool like firebug to view the CSS and see what is happening. So, can you please supply a link and a test username/password, if needed, to see the problem.


Sure here is the link and I will PM you a user and password

http://tricountycamaroswfl.com/swflforums/forum.php

Lynne 09-19-2014 06:12 PM

You should throw the page into an html validator. You have this (which is bad html, but besides that...)

HTML Code:

<P ALIGN="center"><B>Opened to the general public </B><P ALIGN="justify">Welcome <b>Unregistered</b> to Tri-County
and you can see two <p> tags opened, but you never close them. That will definitely cause issues.

spd2612 09-19-2014 07:28 PM

Well I closed the tags, that is not something that I see when I am logged in. Still have the same issue though !!
If I am not mistaken the whole forum home page layout is pulled from the same css.
It is only the one box is there something I can add to additional CSS to fix it.
I have 3 themes and the default is the only one it happens on. sorry re checked it does happen on 2 of them .

ozzy47 09-19-2014 07:35 PM

You have more than that issue going on with the site. You need to check it with a complete default style, as a member and guest.

Create a new style with no parent:
- Styles & Templates > Style Manager > Add New Style
- Parent Style: No Parent Style
- Title: Default vBulletin
- Allow User Selection: Yes
- Save

spd2612 09-19-2014 07:57 PM

1 Attachment(s)
Quote:

Originally Posted by ozzy47 (Post 2515810)
You have more than that issue going on with the site. You need to check it with a complete default style, as a member and guest.

Create a new style with no parent:
- Styles & Templates > Style Manager > Add New Style
- Parent Style: No Parent Style
- Title: Default vBulletin
- Allow User Selection: Yes
- Save

Done, and if I select it I get the same result
I checked it again logged out see attachment.
I disable the garage and it just moves down with same result
I get rid of my header graphic's and its the same

If you view it you will have to go to the bottom of the page and select it

ozzy47 09-19-2014 08:03 PM

Try disabling all your mods, and see if the issue persists.

Open your includes/config.php file and below<?php add this line:

PHP Code:

 define('DISABLE_HOOKS'true); 

So it looks like this:
PHP Code:

<?php
define
('DISABLE_HOOKS'true);
/*=================================================  =====================*\
|| ##################################################  ################## ||
|| # vBulletin 4.2.2


spd2612 09-19-2014 08:48 PM

I try ed it but
All my mods were missing but had the same issue.
This has been driving me nuts for a month, I don't even know wen it started.
For my logo all I did was rename my logo so it shouldnt be there

--------------- Added [DATE]1411163641[/DATE] at [TIME]1411163641[/TIME] ---------------

I tried a bunch of other browsers and I use chrome it works best in there in IE i see other issues

Lynne 09-19-2014 09:20 PM

I just checked your page source and you have not added the </p> tags to close each of those <p> tags.

You have a TON of wrong html in your page. You really need to run it through a validator and fix it (although I still suspect it is because you are missing the </p> tags). Look at this:

HTML Code:

<a href="http://tricountycamaroswfl.com/swflforums/garage_vehicle.php?do=view_vehicle&amp;id=1"><img src="images/garage/attach/2/garage_vehicle-1-14077932961_thumb.jpg" height="100" border="0" /> 
<br />
<a href="http://tricountycamaroswfl.com/swflforums/garage_vehicle.php?do=view_vehicle&amp;id=1">2011 Chevrolet Camaro SS 2SS/RS</a>

You are missing the </a> for the first <a> in there. That occurs several times in the page source.

You have a <b/> in there around the same place you are having issues (although I don't think that is the problem). And, make sure all <br /> tags are correct (that one is correct, your's are not).

You really need to at least fix the html around where the problem is before we can look into this.

From when logged in, this is totally incorrect:
HTML Code:

        <div id="content_container" class=" ">
                <div id="content" >
       
        <!-- main -->
        <li class="forumbit_nopost L1" id="cat221">

You have no beginning <ol> tag. You can't suddenly have an <li> tag without having an <ol> or <ul> tag before it.

spd2612 09-19-2014 10:23 PM

1 Attachment(s)
Ok I guess I did this by accident. I am by no means a PHP coder
I forgot to take some extra code out when I created my garage block widget
I removed that code and re done the HTML and I got what I think is the correct screen all was lined up like it should with a white back ground even in IE, Chrome and Firefox. See the first screenshot ( Named Without ) I had made my header (at top transparent ) and liked that and had that look all the way thru the forum ( look at the forum now or see logged in screen shot ( WithLI) I was getting that affect because I had accidentally left <li at the end of the code I put in my forum block for a widget I made I have no idea why though lol
Is there a better way to get the look I have now with transparency all the way thru the forum home page I know what I am doing cant be right and I assure you was accidental ?

And thanks for guiding me in the right direction

I do have the code <li in the form block now below my widget code

Lynne 09-20-2014 04:18 PM

If I look at your site right now, I see the 'transparent' look. Is that what you want or you want it to have a white background?

I don't think you want to leave this line in:
HTML Code:

<li class="forumbit_nopost L1" id="cat221">
It's listed right under this:
HTML Code:

<!-- main -->

spd2612 09-20-2014 05:44 PM

Quote:

Originally Posted by Lynne (Post 2515950)
If I look at your site right now, I see the 'transparent' look. Is that what you want or you want it to have a white background?

I don't think you want to leave this line in:
HTML Code:

<li class="forumbit_nopost L1" id="cat221">
It's listed right under this:
HTML Code:

<!-- main -->

Yes transparent is what i want to keep

Lynne 09-21-2014 04:39 PM

Well, that is what you have, so I think you have this all figured out now?

spd2612 09-21-2014 04:55 PM

Thanks for the help


All times are GMT. The time now is 07:08 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04112 seconds
  • Memory Usage 1,765KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_html_printable
  • (2)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (15)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete