Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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 Link

    #1431499

    Hey Lin84,

    We would need to see the actual elements in order to give you accurate code, please provide login details in private.

    Best regards,
    Rikard

    #1431657
    This reply has been marked as private.
    #1431676

    Hi,

    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,
    Rikard

    #1431684

    Reicht 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.

    #1431741

    Hi,

    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,
    Ismael

    #1431990

    Ich habe den Code jetzt in die functions.php eingetragen, es ändert aber leider nichts an der Breite der Titel Spalte.

    #1432025

    Hi,

    Thanks for the update. The code I sent is applying when I checked it just now, please try clearing your browser cache and check again.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.