Removing an unknown blank area in HTML - 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...

Related

Unable to switch properly between webpages

While I'm trying to switch between different sections of my webpage I am getting the following page as shown in the image. How can I solve this?
you need to provide context for your question for people being able to help you. I imagine you are trying to navigate between different html files, by clicking into an anchor tag, is that correct?
Go to next page
So in that case, you might be adding a wrong relative route, otherwise I think you should add more context to your question.
If you are trying to switch between sections on your webpage. Try adding section and giving them id. Then from any anchor tag you can reach the section by adding the following code.
Section 1
you can use jquery
$(".div").load("index.php .yoursection");
To switch between sections on your webpage,Use the id selector ,
Example:
<p id="opening">Hyperlinks are utilized by a web browser to move from one page to another...</p>
Now add the anchor tag to link,
Opening
"Opening" will be displayed as a link on the webpage. On clicking it, you will be switched on the same webpage where the id is "Opening".
In this example it is the paragraph tag.
If you trying to switch into another webpage,
Go to home page

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()}>

Failing anchor in Firefox (html)

In run in to some trouble with referring to an anchor at another page.
In Chrome it works in the way I expect it to work, however it won't work in Firefox.
The problem occurs on the page from the following link and then the link in the last line, called 'Artikel 8'.
https://toernooi.skeuvel.nl/programma/
The idea is that it goes to 'https://toernooi.skeuvel.nl/reglementen/' and scrolls down to 'Artikel 8'. Someone who can tell me how to fix this problem?
I'm not having much experience with html...
The page is in dutch, but that won't be a problem the understand the question I think...
In your anchor you are referring to a URL with an appended .html suffix. Remove that so the link is like so:
Artikel 8
Be aware that when a page scrolls down to a fragment identifier, it can only go so far as the height of the page allows. In its current form, the page you are linking to is not heigh enough for the fragment identifier to position itself optimally.

Getting rid of blank space in web page

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...

html correctness link blank or pound sign

What's more correct, an empty string link or a pound?
For example for anchor tags
Or if I were to reference a style sheet, basically anywhere in the html document where a link should be, if I want to remove all these links is it better to make it a pound or blank?
If you need more details i'm basically canning them and need to remove all external dependencies.
You can use to avoid any loading or scrolling.
If an anchor tag has a blank href, clicking it would cause the page to reload, whereas a pound would stay on the page, but bring them back to the top. Neither are ideal since the user would be confused...
For removing stylesheets...why not remove the whole line altogether?