Page 1 of 1

xhtml valid problem

Posted: 20. May 2019 03:01
by Solidjeuh
I'm making my forum html5 valid, and I found a mistake in news_compact_center.html
There is 2 time the "title" attribute.
title="{{ lang('GOTO_LAST_POST') }}" title="{{ lang('VIEW_LATEST_POST') }}">
I removed one, now that error is gone.
Was my edit correct? I removed the last title attribute.

Replaced

Code: Select all

						<div class="responsive-show" style="display: none;">
							{{ lang('LAST_POST') }} {{ lang('POST_BY_AUTHOR') }} {{ news_row.USERNAME_FULL_LAST }} &raquo; <a href="{{ news_row.U_LAST_COMMENTS }}" title="{{ lang('GOTO_LAST_POST') }}" title="{{ lang('VIEW_LATEST_POST') }}"> {{ news_row.LAST_POST_TIME }}</a>
						</div>
With

Code: Select all

						<div class="responsive-show" style="display: none;">
							{{ lang('LAST_POST') }} {{ lang('POST_BY_AUTHOR') }} {{ news_row.USERNAME_FULL_LAST }} &raquo; <a href="{{ news_row.U_LAST_COMMENTS }}" title="{{ lang('VIEW_LATEST_POST') }}"> {{ news_row.LAST_POST_TIME }}</a>
						</div>

Re: xhtml valid problem

Posted: 20. May 2019 06:21
by Kirk
On your board is missing the phpBB and board3 copyright!

Re: xhtml valid problem

Posted: 20. May 2019 18:41
by Solidjeuh
Kirk wrote: 20. May 2019 06:21 On your board is missing the phpBB and board3 copyright!
No, it's there. ;) I never remove copyrights. Click the "Show / Bekijk" text.

Image

Re: xhtml valid problem

Posted: 24. May 2019 16:09
by Kirk
Your coppyright is OK.
Your change for the double title adribute is correct.

Re: xhtml valid problem

Posted: 24. May 2019 18:13
by Solidjeuh
Ok thx for the confirmation. Then all is okay now ;)