1
Installazione, migrazione e aggiornamento / Re:Proteggere l'homepage con password
« il: 29 Ago 2013, 12:15:56 »
Ok grazie
Questa sezione ti permette di visualizzare tutti i post inviati da questo utente. N.B: puoi vedere solo i post relativi alle aree dove hai l'accesso.
Se è un link esterno ti basta inserire il link diretto a quel sito (tipo: http://www.sito.it/)
Se è un link interno inserisci index.php?option= ecc ecc ecc...
Ti basta creare un div contenitore con 3 immagini o blocchi insomma all'interno.
For Joomla, I added "defer" in:
\libraries\joomla\document\html\renderer\head.php
line 130
$strHtml .= $tab.'<script defer="defer" type="'.$strType.'" src="'.$strSrc.'"></script>'.$lnEnd;
x$strHtml .= $tab.'<script type="'.$strType.'" src="'.$strSrc.'"></script>'.$lnEnd;
First, open:
\libraries\joomla\html\html\behavior.php
and have a look at line 155. There should be the following code:
<?php
// Attach modal behavior to document
$document->addScriptDeclaration("
window.addEvent('domready', function() {
SqueezeBox.initialize(".$options.");
$$('".$selector."').each(function(el) {
el.addEvent('click', function(e) {
new Event(e).stop();
SqueezeBox.fromElement(el);
});
});
});");
?>
Edit this line:
window.addEvent('domready', function() {
into this:
window.addEvent('load', function() {
Save the edited file and try to open the site where the error occures in IE.
For Joomla, I added "defer" in:
\libraries\joomla\document\html\renderer\head.php
line 130
$strHtml .= $tab.'<script defer="defer" type="'.$strType.'" src="'.$strSrc.'"></script>'.$lnEnd;
x$strHtml .= $tab.'<script type="'.$strType.'" src="'.$strSrc.'"></script>'.$lnEnd;
![]() |
|