Hallo,
ich habe ein neues Theme installiert und hab komischerweise kommische wortrennungen überall, woran kann das liegen?
Hab im style.css schon nach word wrap oder word break gesucht jedoch nix gefunden
hier ein bild
Um schreiben oder kommentieren zu können, benötigen Sie ein Benutzerkonto.
Sie haben schon ein Benutzerkonto? Melden Sie sich hier an.
Jetzt anmeldenHier können Sie ein neues Benutzerkonto erstellen.
Neues Benutzerkonto erstellenHallo,
ich habe ein neues Theme installiert und hab komischerweise kommische wortrennungen überall, woran kann das liegen?
Hab im style.css schon nach word wrap oder word break gesucht jedoch nix gefunden
hier ein bild
Hallo!
Wenn du gerade an deiner Website arbeitest oder dein aktuelles Hosting überdenkst: Wir betreiben mit NetzLiving eine Hosting-Plattform, die speziell auf Performance, Sicherheit und einfache Verwaltung ausgelegt ist.
neues theme - und welches?
gibt es einen link zu der seite?
Habe zurzeit das "Under Construction" Plugin laufen, kann mich von der Arbeit aus irgendwie nicht einloggen.
Da jetzt bitte schauen!!
Wäre es möglich mir noch Hilfe zu leisten bitte?
hast du schon mit einem Standard design angeschaut, ob es dort auch ist, die Vermutung liegt am Thema, muss nicht css sein, kann auch im Template oder per Function.php so gedacht sein.
Mit anderen Themes habe ich das problem nicht
dann liegt es am Thema, vielleicht sogar eine gewünschte Funktion des Themas,
um es zu finden, ist nicht nur style.css zu durchsuchen, denn man kann mehrer css dateien einbinden, bzw auch die style class direkt auf html/php Seiten,
hier mal ein größerer Ausschnitt
/*Typography*/
h1, h2, h3, h4, h5, h6 {margin-bottom: 20px; font-weight: normal;}
h1 { font-size: 30px; line-height: 30px;}
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
[COLOR=Red]p {line-height: 1.6em; margin-bottom: 15px; word-break: break-all;}[/COLOR]
p:last-child{margin-bottom: 0;}
blockquote { quotes: none; }
del { text-decoration: line-through; }
table { border-collapse:collapse; border-spacing: 0; width: 100%; }
pre { font-family: "Courier 10 Pitch", Courier, monospace; }
code { font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; }
label { display: block;}
Alles anzeigen
http://www.diekurden.de/wp-content/the…css/all.css.php
kann auch sein, da es sich um eine PHP handelt, das der Wert im Backend unter Optionen oder so eingetragen/eingestellt wird
oder diese aus verschiedenen css-Dateien zusammen gestellt/geladen wird
du kannst es auch selbst testen über F12 im IE, siehe Beispiel
http://s14.directupload.net/file/d/2808/rlwhls46_gif.htm
Habe nur das in der style.css, nicht in der all.css
wo liegt dann das problem der tip war das es zu finden ist, und es wurde gefunden, was du selbst nicht geschaft hast. und?
<?php
header( 'Content-type:text/css' );
include '../../../../wp-load.php';
include 'generic.css.php';
$noinclude = array( 'generic.css.php' , 'all.css.php' , 'custom.css' );
$files = scandir( get_template_directory() . '/css' );
$custom = false;
foreach( $files as $file ){
if( file_exists( $file ) && !in_array( $file , $noinclude ) && is_file( $file ) ){
include $file;
}
if( $file == 'custom.css' ){
$custom = true;
}
}
/* custom css // use options _options::value( 'css' , 'custom' , 'file' ) */
if( $custom ){
include 'custom.css';
}
echo _core::method( '_settings' , 'get' , 'extra' , 'settings' , 'css' , 'header-css' );
echo _core::method( '_settings' , 'get' , 'extra' , 'settings' , 'css' , 'general-css' );
$bgstyle = '';
/* CUSTOM CSS ON SINGLE */
if( isset( $_GET[ 'post' ] ) && (int)$_GET[ 'post' ] > 0 ){
$posts_settings = _core::method( '_meta' , 'get' , (int)$_GET[ 'post' ] , 'posts-settings' );
/* GENERAL STYLE */
$background = _core::method( '_settings' , 'get' , 'settings' , 'style' , 'general' , 'background' );
$color = _core::method( '_settings' , 'get' , 'settings' , 'style' , 'general' , 'background_color' );
if( ( isset( $posts_settings[ 'background-color' ] ) && !empty( $posts_settings[ 'background-color' ] ) ) || ( isset( $posts_settings[ 'background-image' ] ) && !empty( $posts_settings[ 'background-image' ] ) ) ){
$single = "\nbody {\n";
if( isset( $posts_settings[ 'background-color' ] ) && !empty( $posts_settings[ 'background-color' ] ) ){
if( _settings::$default[ 'settings' ][ 'style' ][ 'general' ][ 'background_color' ] != $posts_settings[ 'background-color' ] ){
$single .= "\tbackground-color: " . $posts_settings[ 'background-color' ] . " !important;\n";
}else{
$single .= "\tbackground-color: " . $color . " !important;\n";
}
}
if( isset( $posts_settings[ 'background-image' ] ) && !empty( $posts_settings[ 'background-image' ] ) ){
$single .= "\tbackground-image: url('" . $posts_settings[ 'background-image' ] . "') !important;\n";
if( isset( $posts_settings[ 'background-position' ] ) && !empty( $posts_settings[ 'background-position' ] ) ){
$single .= "\tbackground-position: " . $posts_settings[ 'background-position' ] . ";\n";
}
if( isset( $posts_settings[ 'background-repeat' ] ) && !empty( $posts_settings[ 'background-repeat' ] ) ){
$single .= "\tbackground-repeat: " . $posts_settings[ 'background-repeat' ] . ";\n";
}
if( isset( $posts_settings[ 'background-attachment-type' ] ) && !empty( $posts_settings[ 'background-attachment-type' ] ) ){
$single .= "\tbackground-attachment: " . $posts_settings[ 'background-attachment-type' ] . ";\n";
}
}else{
if( strlen( $background ) > 1 && strlen( str_replace( 'none.png' , '' , $background ) ) == strlen( $background ) ){
$single .= "\tbackground-image: url('" . str_replace( "s.pattern" , "pattern" , $background ) . "');\n";
$single .= "\tbackground-repeat: repeat;\n";
}
}
$single .= "}\n";
echo $single;
}else{
/* GENERAL CUSTOM CSS */
$background = _core::method( '_settings' , 'get' , 'settings' , 'style' , 'general' , 'background' );
$color = _core::method( '_settings' , 'get' , 'settings' , 'style' , 'general' , 'background_color' );
$general = '';
if( strlen( $background ) > 1 && !strpos( "none.png" , $background ) ){
$bgstyle .= "\tbackground-image: url('" . str_replace( "s.pattern" , "pattern" , $background ) . "');\n";
$bgstyle .= "\tbackground-repeat: repeat;\n";
$bgstyle .= "\tbackground-color: " . $color . ";\n";
}
if( !empty( $bgstyle ) ){
$general .= "\nbody {\n";
$general .= $bgstyle;
$general .= "}\n";
}
echo $general;
}
}else{
/* GENERAL CUSTOM CSS */
$background = _core::method( '_settings' , 'get' , 'settings' , 'style' , 'general' , 'background' );
$color = _core::method( '_settings' , 'get' , 'settings' , 'style' , 'general' , 'background_color' );
$general = '';
if( strlen( $background ) > 1 && !strpos( "none.png" , $background ) ){
$bgstyle .= "\tbackground-image: url('" . str_replace( "s.pattern" , "pattern" , $background ) . "');\n";
$bgstyle .= "\tbackground-repeat: repeat;\n";
$bgstyle .= "\tbackground-color: " . $color . ";\n";
}
if( !empty( $bgstyle ) ){
$general .= "\nbody {\n";
$general .= $bgstyle;
$general .= "}\n";
}
echo $general;
}
$slidepanel = "div#slidePanel.slide-panel {\n";
$slidepanel .= $bgstyle;
$slidepanel .= "}\n";
echo $slidepanel;
if( _core::method( '_settings' , 'logic' , 'settings' , 'style' , 'general' , 'fixed-width-layout' ) ){
$content = "div.b_content.clearfix {\n";
$color = _core::method( '_settings' , 'get' , 'settings' , 'style' , 'general' , 'content_bg_color' );
if( strlen( $color ) < 1 ){
$content .= "\tbackground-color: #ffffff;\n";
}else{
$content .= "\tbackground-color: " . $color . ";\n";
}
$content .= "}\n";
echo $content;
}
include '../lib/core/css/shortcode.css';
?>
Alles anzeigen
Das ist meine all.css.php
Ich hab auch schon jede css im lib/core/ angeschaut ich finde nirgends das wort "Word"
Ich verstehe schon genau was du meinst. Ich sehe im Chrome und Internet Explorer die GANZE all.css aber ich weiss nicht wo ich die bearbeiten kann ich finde nicht mal fetzen dazu :(((
Bitte helft mir
Oh mein Gott. Wunderbar! Herzlichen Dank für deine ausführliche Recherche meiner .css Datei.
Dafür kriegst du 100 Thumbs Up!
Vielen Dank
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!