indesign47 Posted July 1, 2013 Share Posted July 1, 2013 (edited) Bonjour à tous, Dans le fichier AdminImportController.php afin que la view affiche plus de colonnes (voir captures d'écran) on peut modifier ceci : modifié /** this value set the number of columns visible on each page */ define('MAX_COLUMNS', 6); par define('MAX_COLUMNS', 12); avant width : 900 px / 6 = 150 px après width : 900 px /12 = 75 px Comment modifier le width afin d'utiliser tout l'écran (23 pouces) et garder des colonnes à 150 px, je n'ai pas trouvé dans le css ? Merci par avance. Edit : solution Post 8 Edited July 3, 2013 by indesign (see edit history) Link to comment Share on other sites More sharing options...
enola Posted July 2, 2013 Share Posted July 2, 2013 Bonjour, Essayez avec un width : 100% enola http://www.prestachic.fr Link to comment Share on other sites More sharing options...
indesign47 Posted July 2, 2013 Author Share Posted July 2, 2013 (edited) Bonjour Enola, Merci de intéresser à mon problème. Essayez avec un width : 100% D'accord, mais où ? J'ai trouvé ceci dans le admin.css /* tab: AdminImport */ form#import_form { padding-bottom:22px; margin-left:15px; margin-bottom:20px; } .table_overflow { width:900px; height:500px; overflow:auto; } et ceci #preview_import label { float:left; font-weight:bold; padding:0.2em 0 0; text-align:left; width:320px; } Très beau site et très beau template Le template utilisé sur le site correspond à quel thème ? Edited July 2, 2013 by indesign (see edit history) Link to comment Share on other sites More sharing options...
enola Posted July 2, 2013 Share Posted July 2, 2013 Le fichier css doit se trouver dans le dossier "admin" "themes" "default" et "css" Merci ... Pour le template de mon site, il n'est pas réalisé à partir d'un des thèmes du site. enola Link to comment Share on other sites More sharing options...
indesign47 Posted July 2, 2013 Author Share Posted July 2, 2013 (edited) suivant Edited July 3, 2013 by indesign (see edit history) Link to comment Share on other sites More sharing options...
indesign47 Posted July 3, 2013 Author Share Posted July 3, 2013 Le fichier css doit se trouver dans le dossier "admin" "themes" "default" et "css" Ok. Dans admin.css j'ai trouvé ceci. La table est déjà à 100 % *TABLE*/ .table_grid {width:100%;} .table{ background-color:#fff;border:1px solid #ccc;padding:0: border-radius:3px; -moz-border-radius:3px;-webkit-border-radius:3px;} .filter {background-color:#f1f9ff;} .table .filter {margin:2px;} .table th a{text-decoration:underline} .table a:hover{text-decoration:none} .table tr th{ background-color: #F1F1F1; text-shadow:0 1px 0 #fff; padding:4px 6px; background: #ececec url('../img/bg-degrade-table.png') repeat-x scroll left top; background-image: -moz-linear-gradient(center top , #F9F9F9, #ECECEC); background: -webkit-gradient(linear, center top ,center bottom, from(#F9F9F9), to(#ECECEC)) repeat scroll 0 0 transparent; font-size:13px; text-align:left; color:#333;} .table tr th.right { text-align:center;} .table tr td{border-bottom:1px solid #ccc;color:#333;font-size:12px;padding: 4px 4px 4px 6px;} .table tr.row_hover:hover td{background:#fff1b5} .table tr.row_hover.filter:hover td{background:#F1F9FF} .table tr td.row_hover:hover table tr td{background:none} .table tr.action_details td{background:#FAFAFA;} .table tr.alt_row.action_details td{background:#E8E8E8;} .table tr td.empty{border-bottom:none;background:white!important} .table tr td.first{border-left:1px solid #DEDEDE} .table tr td.last{border-right:1px solid #DEDEDE} .table tr.small td{height:15px} .table tr.last td{border-bottom:none} Link to comment Share on other sites More sharing options...
indesign47 Posted July 3, 2013 Author Share Posted July 3, 2013 Deux autres captures d'écran plus explicites Link to comment Share on other sites More sharing options...
indesign47 Posted July 3, 2013 Author Share Posted July 3, 2013 (edited) La solution : Dans le fichier AdminImportController.php afin que la view affiche plus de colonnes on peut modifier ceci : modifié ligne 35 (environ) /** this value set the number of columns visible on each page */ define('MAX_COLUMNS', 6); par define('MAX_COLUMNS', 12); modifié ligne 556 (environ) protected function generateContentTable($current_table, $nb_column, $handle, $glue) .. $html .= '<th style="width: '.(900 / MAX_COLUMNS).'px; vertical-align: top; padding: 4px"> <select onchange="askFeatureName(this, '.$i.');" style="width: '.(900 / MAX_COLUMNS).'px;" par protected function generateContentTable($current_table, $nb_column, $handle, $glue) .. $html .= '<th style="width: '.(1300 / MAX_COLUMNS).'px; vertical-align: top; padding: 4px"> <select onchange="askFeatureName(this, '.$i.');" style="width: '.(1300 / MAX_COLUMNS).'px;" Ajuster le nombre de colonnes et le width selon son écran Edited July 3, 2013 by indesign (see edit history) Link to comment Share on other sites More sharing options...
Captain FLAM Posted July 9, 2013 Share Posted July 9, 2013 Bravo à toi pour avoir trouvé la solution tout seul comme un grand Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now