PDA

View Full Version : Missing bottom border


StarBuG
Sun 18th Nov '07, 2:01am
Hi

I am missing the bottom border of the featured blog entry.

I have no clue why this is, this is only on the blog.php homepage.

I have adsense modifications installed, but all modifications are installed via the template modification system so no template changes at all.
I have deactivated all modifications (which means it is the pure original blog) and the problem is there.

I have the blog installed on two forums of mine and the problem exists on BOTH forums!

Screenshot:

http://www.elternfragen.net/images/sonstige/blog_screen.png

Please help

Thanks in advance

StarBuG

Jose Amaral Rego
Sun 18th Nov '07, 12:13pm
It maybe you incorrectly added the advert code incorrectly.

StarBuG
Sun 18th Nov '07, 12:46pm
Like I said it has nothing to do with my modifications because the problem exists on the plain unmodified blog

Jose Amaral Rego
Sun 18th Nov '07, 5:11pm
What does it look like when using an unmodified style.

StarBuG
Mon 19th Nov '07, 1:06am
In the original vbulletin style the bottom border is there, but never the less, there is something wrong when the bottom border is missing in an unmodified style.

Kerry-Anne
Mon 19th Nov '07, 1:51am
If it appears correctly when using the default style then the issue is related to the style you are using, most likely a CSS definition in the alt2 class from what I can in the screenshot you have provided.

StarBuG
Mon 19th Nov '07, 10:51am
I found the reason for it but it is a "faulty"?? basis of the way the borders are made on this blog.

there is an outer border .tborder for which I removed the css definition (border: 1px solid #0B198C;). The inner backgroundcolor #D1D1E1 is shown everywhere except at the bottom.

See these screenshots from the blog here on vBulletin.com

http://www.elternfragen.net/images/sonstige/screen1a.png

upper left:

http://www.elternfragen.net/images/sonstige/screen1b.png

lower left:

http://www.elternfragen.net/images/sonstige/screen1c.png

Is there a way to fix this without using the outer border css definition?

This problem exists with some tables (not all!) used all over the forum.
If you want me to show more places where this happens let me know.

StarBuG

Jose Amaral Rego
Mon 19th Nov '07, 2:49pm
<div class="alt2 smallfont" align="right" style="margin:0px 1px 0px 1px; padding:6px">

It would seem that margin bottom is at 0(zero) pixels. I wish they had the admin demo running. It would be easier to see what can be done with the templates.

StarBuG
Tue 20th Nov '07, 12:36pm
Any chance someone can point out the template this peace of code is?

Jose Amaral Rego
Tue 20th Nov '07, 1:42pm
You know what... That has nothing to do with the missing border for margin. You must have something within custom css.

border-top: 1px solid white;
border-bottom: 1px solid white;

I notice it missing from your site the top border from Random Blog

StarBuG
Tue 20th Nov '07, 5:20pm
If I put border-bottom: 1px solid white; into the custom css for .tborder then it fixes the problem, but doubles the bottom border size on all other tables that did not have this problem.

There is something wrong with the templates I think that needs fixing.

Jose Amaral Rego
Wed 21st Nov '07, 2:15am
I mean that you must have some custom styling with border or not to show border. If this was with templates, then you would see more members with same issues. I think I only remeber one other instance of this.

It has to be with your custom style and you would need to compare all template edits and CSS.
http://www.vbulletin.com/forum/showpost.php?p=1448858&postcount=5

StarBuG
Wed 21st Nov '07, 11:25am
This is a general issue cause you can see it here on vBulletin as well, like I have shown in the screenshots in post #7

I only removed the css for the outer border cause it does not fit my theme, this is why this problem is more prominent on my forum then it is here.

Jose Amaral Rego
Wed 21st Nov '07, 1:31pm
In post #7 it is a margin issue, but it is hard to see what you have done just by images... after I did a couple of test and just set border to 0(zero)pixels in CSS Selector: .tborder, it seems to make top/bottom margin disappear even though margin has not been change. You should report this to 'Blog Bugs'. You are missing the magin to top and where you pointed out, the bottom.

Once you set .tborder border to 0(zero), then the top/bottom margin in "Random Blog Feature' just does not appear. It is odd that the rest will not follow and not show, but I just see that one area now. I have check to see some places with unmodified and could just find one instance of this, but will try with no border and see how many areas will show this oddity.

StarBuG
Wed 21st Nov '07, 2:53pm
I simply removed the css: 1px solid #0B198C; for .tborder

that's it

Jose Amaral Rego
Wed 21st Nov '07, 3:24pm
Going to see what Developers say.
http://www.vbulletin.com/forum/project.php?do=gotonote&issuenoteid=49990

Jose Amaral Rego
Wed 21st Nov '07, 7:30pm
This should correct it for now.

The navbar you would need to add more attributes to create a border ; border:1px solid #123456


<!-- nav buttons bar -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px; EXTRA ATTRIBUTE">
<tr align="center">


Do template search for in blue and add extra attribute to division/section tag

<!-- main content -->
<div class="tborder">


<div class="tcat" style="padding:6px; margin:0px; border:1px solid #123456;">


search for phrase 'Posted in' or your translated version and add extra attribute to division/section tag

<div class="alt2 smallfont" align="right" style="margin:0px; border-top:0px; border-right:1px solid #123456; border-bottom:1px solid #123456; border-left:1px solid #123456; padding:6px">

<div style="float:left"><span class="shade">Posted in</span> <a href="blog.php?u=129878&amp;blogcategoryid=21">vBulletin</a></div>