-
AuthorPosts
-
January 19, 2024 at 9:29 am #1431462
Hallo,
auf einem kleinen Bildschirm ist die Ansicht im Dashboard sehr unübersichtlich.
Wenn ich z.B. auf Beiträge gehe, wird der Titel eines Beitrags so schmal angezeigt das man nichts lesen kann. Kann man die Breite der Spalte eventuell Manuel anpassen?
Siehe Bild im angefügten LinkJanuary 19, 2024 at 5:25 pm #1431499Hey Lin84,
We would need to see the actual elements in order to give you accurate code, please provide login details in private.
Best regards,
RikardJanuary 22, 2024 at 9:33 am #1431657This reply has been marked as private.January 22, 2024 at 2:54 pm #1431676Hi,
Thanks for that. Please try this in your functions.php file:
add_action('admin_head', 'lin84_custom_admin_panel_css'); function lin84_custom_admin_panel_css() { echo '<style> #posts-filter th#title { width: 100px; } </style>'; }
Best regards,
RikardJanuary 22, 2024 at 3:50 pm #1431684Reicht das wenn ich es im QuickCSS einfüge?
Ich weiss nicht wieso aber ich kann die Funktion.php auf dieser Webseite in WordPress nicht finden.
Normalerweise gehe ich in WordPress auf Design > theme-Datei-Editor, und dort kann ich dann die Funktion.php bearbeiten ohne über den FTP zu gehen.
Aber auf dieser Website ist dies Option nicht sichtbar.January 23, 2024 at 5:42 am #1431741Hi,
Thank you for the update.
You may need to check the wp-config.php file and make sure that the DISALLOW_FILE_EDIT constant is set to false. If you can’t find the constant in the said file, you can declare it manually with the value set to false.
define( 'DISALLOW_FILE_EDIT', false );
This should re-enable the Appearance > Theme File Editor panel. If the panel is still not accessible, you can also edit the functions.php file via S/FTP. You may need to ask your hosting provider for the login credentials.
Best regards,
IsmaelJanuary 25, 2024 at 10:55 am #1431990Ich habe den Code jetzt in die functions.php eingetragen, es ändert aber leider nichts an der Breite der Titel Spalte.
January 25, 2024 at 3:08 pm #1432025 -
AuthorPosts
- You must be logged in to reply to this topic.