I have a webpage which has the html code for one page below. This part of the page's html makes it offset by 15px to the left for no reason. But it annoys me that when i go onto another page on the website, it offsets.
I checked with F12 and on this page body is 1068px wide, on all others, its 1085.
So I've been trying to figure this one out and I could not. I managed to narrow the issue down to this html part:
<div class="torzs" id="articleGroup">
<article class="hirek">
<div class="artDatum">Date</div>
<h3>title</h3>
<p>bla</p>
<p>bla<strong>bla</strong></p>
</article>
<article class="hirek">
<div class="artDatum">date</div>
<h3>title</h3>
<p>bla</p>
<ul><li>bla1</li><li>bla2</li><li>bla3</li><li>.bla4</li></ul>
<p>bla</p>
<p>bla<strong>bla!</strong></p>
<p>blabla</p>
</article>
<article class="hirek">
<div class="artDatum">date</div>
<h3>bla</h3>
<p>bla</p>
<p>bla</p>
<p>bla</p>
</article>
</div>
I deleted all the css from the page, and the issue persisted, so it should be coming from html, right? It is very annoying that all other pages are offset by this little 15-ish px.
Or if the issue can't be told, can you recommend any kind of debugging best-practice for this kind of issue?
Thanks for help!
editing
link to see the issue: http://web.uni-corvinus.hu/~asdsma/index.html
(sorry, it is in my native language. You should compare the 1st and the 4th menu items for example.)