Kann mir jemand sagen wo ich beim ThreeColumm ( http://www.golod.com/threecolumn/ ) Theme, den Header einstellen kann?
ThreeColumm - Header ändern?
-
-
- Gerade eben
- Anzeige
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.
- ✔️ Schnelle Ladezeiten (optimiert für WordPress & Co.)
- ✔️ Deutsche Server & DSGVO-konform
- ✔️ Persönlicher Support (kein 0815-Ticket-System)
-
schau mal in deinem Theme-Ordner nach einer Header.php Datei ... kenn das Style nicht, aber hoffe mal, es die Datei heißt da auch so ...
PHP<div id="header"> <div> <h1><a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a></h1> <div class="description"><?php bloginfo('description'); ?></div> </div> </div>
da suchst du nach dem Code und da kannst du halt einen Header deiner Wahl einbinden ...als Bsp.:
-
beim dem Theme sieht das aber so aus:
PHP
Alles anzeigen<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <?php wp_head(); ?> </head> <body> <div id="container"> <div id="header"> <div> <h1><a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a></h1> <div class="description"><?php bloginfo('description'); ?></div> </div> </div> <div id="leftnav"> <?php get_sidebar(); ?> </div> <div id="rightnav"> <p>RightNav</p> </div> -
:confused: das ist doch genau der Codeabschnitt drin, den ich dir oben gezeigt habe, den du ähnlich wie das Beispiel anpassen kannst ....
PHP
Alles anzeigen[COLOR=#000000] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="[COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'html_type'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR]; charset=[COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'charset'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR]" /> <title>[COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'name'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR] [COLOR=#0000cc]<?php [/COLOR][COLOR=#006600]if ( [/COLOR][COLOR=#0000cc]is_single[/COLOR][COLOR=#006600]() ) { [/COLOR][COLOR=#0000cc]?>[/COLOR] » Blog Archive [COLOR=#0000cc]<?php [/COLOR][COLOR=#006600]} [/COLOR][COLOR=#0000cc]?>[/COLOR] [COLOR=#0000cc]<?php wp_title[/COLOR][COLOR=#006600](); [/COLOR][COLOR=#0000cc]?>[/COLOR]</title> <meta name="generator" content="WordPress [COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'version'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR]" /> <!-- leave this for stats --> <link rel="stylesheet" href="[COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'stylesheet_url'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR]" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="[COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'rss2_url'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR]" /> <link rel="alternate" type="text/xml" title="RSS .92" href="[COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'rss_url'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR]" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="[COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'atom_url'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR]" /> <link rel="pingback" href="[COLOR=#0000cc]<?php bloginfo[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'pingback_url'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?>[/COLOR]" /> [COLOR=#0000cc]<?php wp_get_archives[/COLOR][COLOR=#006600]([/COLOR][COLOR=#cc0000]'type=monthly&format=link'[/COLOR][COLOR=#006600]); [/COLOR][COLOR=#0000cc]?> <?php wp_head[/COLOR][COLOR=#006600](); [/COLOR][COLOR=#0000cc]?> [/COLOR]</head> <body> <div id="container"> [/COLOR] <div id="header"> <div id="headerimg"><a href="/"><img alt="deinHeader" src="/wp-content/themes/adsense_ready/images/deinHeader.gif"></a> [COLOR=#000000]</div> </div> </div> <div id="leftnav"> [COLOR=#0000cc]<?php get_sidebar[/COLOR][COLOR=#006600](); [/COLOR][COLOR=#0000cc]?> [/COLOR]</div> <div id="rightnav"> <p>RightNav</p> </div> [/COLOR]könnte dann also so aussehen zum Beispiel ...
[COLOR=#000000] [/COLOR] -
Ich habs jetz so:
Aber jetzt ist der Blog kaputt und es ist immer noch das alte Logo da.
PHP
Alles anzeigen<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <?php wp_head(); ?> </head> <body> <div id="container"> <div id="header"> <div> <div id="headerimg"><a href="/"><img alt="Anything4free.de" src="/wp-content/themes/threecolumn/images/a4fheader.jpg"></a> </div> <div id="leftnav"> <?php get_sidebar(); ?> </div> <div id="rightnav"> <p>RightNav</p> </div> -
habe gerade deine css Datei in einem anderen Beitrag gesehen ... komischerweise ist in der css Datei nochmal nen Aufruf für nen Logo.jpg ... und in der Header war nen Aufruf für ne Logo.gig Datei ... *grübel* ... find ich schon etwas sehr verwirrend ...
muss mir heute Abend zu Hause mal das Theme runterladen und kurz aktivieren ... dann schau ich nochmal genauer ...
aber kannst ja mal in der css-Datei nach #header schauen ... und hier mal testen
-
Ich hab jetzt einfach die Logo.jpg mit meinem Header überschrieben, die Lösung gefälllt mir zwar nicht wirklich aber so hab ich wenigstens schonmal ne Vorschau wie es aussieht.
Jetzt mitmachen!
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!