====== Change history for themes in version 3.3 ======
This page lists all changes in the Theme folder inside the Version 3.3. If you update to a new version, you have to update all the changes from your previous version to your new version of Admidio, otherwise it may cause display problems.
The changes shown here always refer to both of our standard themes. Did you make changes in the defaut tehme, you have to consider when assigning these adjustments. This can, for example, be the case with colors.
If you have previously used an older Admidio version than the 3.2, please have a look at our previous [[de:2.0:aenderungshistorie_fuer_themes_32|history of changes]].
===== Version 3.3.0 =====
When updating from version 3.2.0 or later, the following files need to be adjusted in the Theme folder.\\
(If you have not made changes, you can also upload the entire folders and just only adjust the CSS folder manually)
* The following files must //be replaced// in the appropriate folders:
* **my_body_bottom.php (or change manually the menu calls) **
* The following files must //be added// in the appropriate folders:
* **icons/new_registrations_gray.png**
* **icons/shield.png**
* **images/no_photo_found.png**
* The following files must //be removed// in the appropriate folders:
* **icons/user_key.png**
* **images/nopix.jpg**
==== Changes within the modern theme ====
== Add block in css/admidio.css ==
html {
min-height: 100%;
}
#profile_authorizations_box_body div {
margin-bottom: 5px;
}
===== Change the menu to the database =====
With version 3.3, the menu is no longer statically assembled in the file ** my_body_bottom.php **. It's stored in the database and will be created out of it. In order for this to work for you, you have to adjust the ** my_body_bottom.php ** for an update to version 3.3 or newer.
You have the following 3 possibilities:
- If you have not made any adjustments in our standard theme, you can simply replace the theme folder ** adm_themes ** during the update.
- Have you made adjustments in the theme, but not in the file ** my_body_bottom.php **, then just replace this file.
- If you have the file **my_body_bottom.php** adapted to your needs, you have to do some changes in the code. \\ To do so, please remove the following code:
Now add after the following line of code: require(ADMIDIO_PATH . FOLDER_PLUGINS . '/login_form/login_form.php');
these lines of code: // create html page object and display Menu
$page = new HtmlPage();
echo $page->showMainMenu(false);
Now the sidebar should always show the menu you configured in Admidio.