/**
 * @package Helix Ultimate Framework
 * @author JoomShaper https://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2018 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later

 

Das Helix Ultimate Template von Joomshaper ist ein kostenloses Template, das ich manchmal in Joomla Projekten einsetze. Ich hatte jedoch Probleme im Frontend-Editiermodus, weil die Tags/Register beim Klicken verschwanden und der "Upload"-Button beim Bilder-Upload nicht angezeigt wurde. Ein paar Zeilen CSS-Code lösen das Problem.
Frontend Edit Helix Ultimate Probleme lösen

Mit folgendem CSS-Code kann man diese Probleme beheben:

Einfach den Code ins normale Template-CSS einfügen - in Helix Ultimate in der Datei:

/templates/shaper_helixultimate/css/custom.css

/* fe edit, elements disappearing */


li > a.nav-link {
 position: relative;
 display: block !important;
}
.form-group label { display: block !important; }
.form-group .input-group a { display: block !important; }

/**
Im Joomshaper-Supportforum wurde das Thema ebenfalls diskutiert:
https://www.joomshaper.com/forums/create-article-in-frontent
*/


/** Unterdrueckung im Frontend bei Beitrags-Eingabe von Tabs Sprache und Veröffentlichung
https://forum.joomla.de/thread/10762-beitrag-einreichen-tabs-ver%C3%B6ffentlichen-und-sprache-wegschalten/
*/
#com-content-formTabs li:nth-child(3),
#com-content-formTabs li:nth-child(4) {
    display: none;
}



/**
2020-01-03
https://forum.joomla.de/thread/7979-helix-ultimate/?postID=64382#post64385
*/


#member-registration .form-check-inline input[type="radio"] {
    display: inline;
}

#member-registration #jform_privacyconsent_privacy-lbl {
    display: inline-block !important;
}

#member-registration a.modal {
    display: inline;
    position: relative;
}



/**
2020-01-03
https://forum.joomla.de/thread/7979-helix-ultimate/?postID=64382#post64385
*/


#member-profile .form-check-inline input[type="radio"] {
    display: inline;
}

#member-profile #jform_privacyconsent_privacy-lbl {
    display: inline-block !important;
}

#member-profile a.modal {
    display: inline;
    position: relative;
}

