Change this:
<a href="<?php echo ToHtml($this->backToCourseUri); ?>" class="accessible-link"> <?php echo Zend_Registry::get('translate')->_('Kliknite'), "\n"; ?> </a>
In it:
<a href="<?php echo ToHtml($this->backToCourseUri); ?>" class="accessible-link"> <?php echo Zend_Registry::get('translate')->_('Kliknite'), "\n"; ?></a>
</a> must be on the same line after <?php echo Zend_Registry::get('translate')->_('Kliknite'), "\n"; ?> <?php echo Zend_Registry::get('translate')->_('Kliknite'), "\n"; ?> aka Click here
EDIT:
A new line and spaces after it are displayed as 1 space, which is still inside the <a></a> tags, from where the empty space begins.
EDIT2:
For the record, I also don’t like that the closing tag will be next to the content, not the creature on the new line, but how it needs to be done to work correctly.
I like good formatted code and I am always looking for the autoformat command in my IDE.
But at least, for example, in Visual Studio, when you press Ctrl + K , Ctrl + D (cropping a formatted document), closing tags, such as </a> , are not automatically transferred to the new one for this reason: it should not breaking how it looks in front of an automatic format.
source share