Getting rid of blank space in web page - html

Please look at the bottom of following page:
http://javaexperience.com/this-and-super-in-java/
There is a large amount of blank space after the text "Initializing final variables in Java". I have seen the HTML code using Firebug but no clue which element is adding that extra blank space which makes the page look really bad.

The problem comes because sidebar is taller than contents-b and this seems in no small part due to the rather unusual <b class="niftyfill" style="height: 670px;"></b> that seems to exist at the end of there. It seems to be dynamically added (ie firebug shows it to me in the dom inspection but it doesn't appear in source) but I'm not sure what by or why. Hopefully you are aware of whatever script you are running to do this...

Related

VS Code isn't recognizing html files

VS had suddenly stopped recognizing HTML files and it doesn't autocomplete tags or even show the syntax unless I manually input every single file name in it, I would really appreciate the help on any idea how to solve that Here is how it looks:
I have tried many things but nothing seems to work or help fix it
See if this solves the problem:
On the bottom right of the application, you should see something like this:
Click on the "Plain text".
Search HTML in the list and click it.
Then your HTML should turn colorful.

XCart page showing random code at the top of the page

I'm building a website using x-cart and all of a sudden I'm getting this line of code appearing at the top of the page.
class="area-c skin-customer skin-XC_ColorSchemes-customer skin-theme_tweaker-customer authorized target-main no-sidebars">
While navigating through the webmaster mode theme tweaker, it appears this line shows up outside what I would expect in the content (that is, when I click on regular page content the relevant file in theme tweaker is highlighted yet nothing happens when I click the code).
Any advice on clearing this away would be greatly appreciated, thanks!
So it turns out in one of my template files there was an if condition followed by a class without an opening bracket.
I think the reason I hadn't spotted this is that rather than matched the text above, the code read along the lines of
case="{function.doThis()}>

Removing an unknown blank area in HTML

I have two pages on my website. I tried to make it so that they had the same appearance but they do not.
This page has a blank area at top of page. Please, show me how to remove it. I cannot find what HTML code is causing this blank area.
http://ec2-50-17-62-126.compute-1.amazonaws.com/dev/chia-se-dia-diem
This page is normal without unexpected blank area
http://ec2-50-17-62-126.compute-1.amazonaws.com/dev
Thank You!
I think you forget to close any tag in your site. Most probably it is problem of javascript. so, remove one by one javascript and check this out...

IE8 not showing div content

I have some content that, for some reason, is not being shown in IE8 (but works fine in Firefox).
The source shows that the code is created, and the box for the content is present and correct, but everything inside it (in <div class="inside">) is not shown. The class .inside is visible, as shown by the box above it being populated.
I've recorded a short video so that the problem can be seen. I'm totally lost for ideas, any suggestions appriciated. Thanks.
http://screencast-o-matic.com/watch/cl1YQFHO5
This was an issue with my text editor (Total Edit) corrupting a file. Copying the contents in to a new file and overwriting the original solved the issue.

How to remove an unneccessary space within a link

I'm having trouble trying to remove a space that has been added to a hyper link. The HTML code for the link is correct and I even tested it within my browser. It works fine, however when I past the code into my email service provider and do a test send the links still come in with an unnecessary space.
I'm stumped as to what to do.
Use HttpUtility.HtmlEncode(url), nd on the other end HttpUtility.HtmlDecode(url)
Make sure the anchor is on one line. Your email service provider may be breaking it out to something like:
<a href="">
text
</a>
Which could cause extra spaces to show up.