.admidio-img-presenter img {
max-width: 100%;
height: auto;
}
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 218):@media (max-width: 767px)
{
.btn-group {
display: block;
}
Replace the block with this code:@media (max-width: 500px)
{
.btn-group {
display: block;
}
===== Version 4.2.8 =====
* Remove the following block within the file ''adm_themes/your-theme-folder/css/admidio.css'' (around line 150):h6, h5 {
font-weight: bold;
}
* Remove the following block within the file ''adm_themes/your-theme-folder/css/admidio.css'' (around line 572):.admidio-plugin-content ul {
padding-left: 15px;
}
#plugin-latest-documents-files hr {
margin: 5px 0px;
}
===== Version 4.2.7 =====
* The following file must be //replaced// into the corresponding theme folder:
* ''adm_themes/your-theme-folder/templates/sys-template-parts/form.multiline.tpl''
* ''adm_themes/your-theme-folder/templates/sys-template-parts/parts/form.part.iconhelp.tpl''
* Remove the following block within the file ''adm_themes/your-theme-folder/css/admidio.css'' (around line 554):.admidio-attachment {
margin-left: 20px;
}
===== Version 4.2.5 =====
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 318):.datetime-date-control {
display: inline;
}
.datetime-time-control {
width: 110px !important;
margin-left: 20px;
}
Replace the block with this code:.datetime-date-control {
display: inline-block;
}
.datetime-time-control {
display: inline-block;
width: 110px !important;
margin-left: 20px;
}
===== Version 4.2.3 =====
* The following file must be //replaced// into the corresponding theme folder:
* ''adm_themes/your-theme-folder/templates/sys-template-parts/form.button.tpl''
===== Version 4.2.0 =====
If you update from version 4.1 or newer you have to adjust the following files in the theme folder.
(if you haven't made changes everywhere, you can also just replace complete folders and adjust e.g. only the CSS folder manually)
* Add the following folder to your theme ''adm_themes/dein-ausgewähltes-Theme/templates/sys-template-parts''. You can take this one from the Simple theme from our package.
* Add the following block to the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' :/***********************************/
/* page function menu */
/***********************************/
.admidio-page-nav {
margin-top: 25px;
}
.admidio-page-nav .nav-link {
margin-right: 25px;
margin-top: 15px;
}
@media (max-width: 767px) {
.admidio-page-nav .nav-link {
width: 150px;
margin-right: 15px;
}
}
.admidio-album-thumbnail {
margin-bottom: 25px;
}
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 150):a.btn-primary:hover {
color: #ffffff !important;
}
Replace the block with this code:a.btn-primary, .btn-secondary {
color: #f7f7f7 !important;
}
a.btn-primary:hover, .btn-secondary:hover {
color: #ffffff !important;
}
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 309):input[data-provide=datepicker], input[data-provide=datepicker-birthday] {
width: 200px;
}
Replace the block with this code:input[type=date] {
width: 200px;
}
input[type=time] {
width: 100px;
}
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 318):.datetime-date-control {
display: inline;
}
.datetime-time-control {
width: 100px !important;
margin-left: 20px;
}
Replace the block with this code:.datetime-date-control {
display: inline-block;
}
.datetime-time-control {
display: inline-block;
width: 110px !important;
margin-left: 20px;
}
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 50):.admidio-content {
order: 1;
}
Replace the block with this code:.admidio-content-col {
padding: 0px;
}
.admidio-content {
order: 1;
padding-left: 15px;
padding-right: 15px;
}
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 120):.admidio-page-nav {
margin-top: 25px;
}
.admidio-page-nav .nav-link {
margin-right: 25px;
margin-top: 15px;
}
@media (max-width: 767px) {
.admidio-page-nav .nav-link {
max-width: 150px;
}
}
Replace the block with this code:.admidio-menu-function-node {
margin-top: 25px;
}
.admidio-menu-function-node .nav-link {
margin-right: 25px;
margin-top: 15px;
}
@media (max-width: 767px) {
.admidio-menu-function-node .nav-link {
max-width: 150px;
}
}
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' and remove the following code (around line 550):/***********************************/
/* Chat module */
/***********************************/
#chat-area {
height: 350px;
overflow: auto;
border: 1px solid #666;
padding: 20px;
background: white;
max-width: 1000px;
}
#chat-area span {
color: #ffffff;
background: #263340;
padding: 4px 8px;
border-radius: 5px;
margin-right: 10px;
}
#chat-area time {
font-size: 75%;
padding: 4px 0px;
border-radius: 5px;
margin-right: 10px;
}
#chat-area p {
padding: 10px 0;
border-bottom: 1px solid #dddddd;
margin-bottom: 0px;
}
#sendie_group {
margin-top: 20px;
}
* Search within the file ''adm_themes/dein-ausgewähltes-Theme/templates/index.tpl'' the following code (around line 107):
{$headline}
{if $hasPreviousUrl}
{$l10n->get('SYS_BACK')}
{/if}
Replace the block with this code:
{$headline}
{$menuFunctions->getHtml()}