Designanpassung, Pandora Theme

  • Hallo!

    Ich bräuchte mal etwas Hilfe bei der Designanpassung vom Pandora Theme.
    Mein Blog ist unter http://adventskalender.freaky-village.com erreichbar.
    Mein Problem ist jetzt, das ich ein paar Dinge nicht selber geändert bekomme.
    1. Wie kann ich die Sliderfunktion vom Header ausschalten, so dass nur noch das Headerbild angezeigt wird?
    2. Habe ich ein Problem mit meinem horizontalen Menü. Die Farbe von der normalen Anzeige konnte ich jetzt schon ändern. Also wenn der Menüpunkt nicht aktiv ist und man nicht drauffährt (hover-effekt). Der aktive Menüpunkt ist jetzt aber falsch (der ist lila weiß, soll aber rot weiß sein), ebenso der Hover-Effekt.
    3. Ich hab noch ein Problem mit der Footer-Sidebar. Die Schrift dort ist grau, was man auf dem grünen Hintergrund kaum lesen kann. Deswegen wollte ich die Farbe ändern. Ich finde aber nicht heraus wo ich da die Farbe anpassen kann. Den Hover-Effekt dort konnte ich schon ändern.
    4. Ich habe ne Hintergrundgrafik eingebaut... Allerdings bekomme ich das gerade einfach nicht hin, dass die Grafik vertikal und horizontal wiederholt wird.

    Es wäre wirklich suuuuupeeeeer nett, wenn mir jemand bitte bei diesen Problemen helfen könnte.


    Liebe Grüße, Sonnenträumerin

    • 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)

    Mehr erfahren

  • 1.) keine ahnung - gibt es keine optionen zum deaktivieren des sliders im theme?
    2.) http://adventskalender.freaky-village.com/wp-content/the…big.css?ver=1.0 in dieser css datei wird (nur) das aussehen deines menüs definier -> und da du dich ja scheinbar ein wenig mit css auszukennen scheinst (du hast ja den "normalen" button auch umgestylet) kannst du dich hier austoben ;)
    3.) (normale) style.css zeile 813

    Code
    .endof a, .endof a:visited {
        [COLOR="#FF0000"]color: #888888;[/COLOR]
        text-decoration: none;
    }


    hier kannst du die farbe ändern
    4.) (normale) style.css zeile 18

    Code
    body {
        background-image: url("images/background2.png");
       [COLOR="#FF0000"] background-repeat: repeat-x;[/COLOR]
        font-family: Neucha;
        margin: 0;
    }


    die rote zeile ändern in "background-repeat: repeat;" (ohne "") oder die zeile komplett löschen, da background-images standardmässig horizontal und vertikal wiederholt werden.

    anmerkung zu punkt 4: wenn du wirklich den hintergrund so "unruhig" gestallten willst musst du zusätzlich nocht die artikelschriftfarbe änder, da man diese sonst sehr schwer lesen kann.

    lg, pixselig

  • Hallo!

    Vielen lieben Dank für deine Hilfe.

    Hab das gerade mal mit dem Hintergrund getestet... Öhm ja... Doof.
    Also ich hatte eigentlich vor, dass der Hintergrund vom Content weiß bleiben soll... Aber das macht der mir irgendwie nicht. Kannst du mir da mal weiter helfen?
    Ich hab das selbe vom Code her auch bei meinem normalen Blog (http://blog.freaky-village.com)... Der Code von dem repeat ist gleich... Nur komischerweise wird der auf dem normalen Blog nur in den Hintergrund gesetzt und der Content bleibt weiterhin weiß.

    Zu dem 1. Problem. Nein, leider habe ich keine Option gefunden, wo ich den Slider deaktivieren kann... Habe schon versucht den Befehl für den Slider aus diversen php-Dateien zu löschen. Aber dann hat es mir das gesamte Template zerschossen.
    Selbst wenn ich angebe, dass 0 Bilder im Slider angezeigt werden sollen, zeigt er weiterhin 1 Bild an.
    Hätte aber gerne die normale "Kopfzeile" funktion, die ja auch mit eingebaut ist. Aber da nimmt er mir keine Grafik an, weil er den Slider benutzt.

    LG Sonnenträumerin

  • AW: Designanpassung, Pandora Theme

    Zur Frage 1:
    Poste doch mal den Inhalt deiner header.PHP

    Zu Frage 4:
    Schaue mir morgen das ganze nochmal am PC an, denn natürlich kannst du dem content eine andere Hintergrund(Farbe) geben.

  • PHP
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes() ?>><head profile="http://gmpg.org/xfn/11">	<link href='http://fonts.googleapis.com/css?family=Crafty+Girls|Neucha|Finger+Paint|Bonbon|Indie+Flower' rel='stylesheet' type='text/css'>	<title><?php wp_title( '-', true, 'right' ); echo esc_html( get_bloginfo('name') ) ?></title>	<meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />	<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />	<link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />	<?php echo pandora_my_favicon(); ?>
    <?php wp_head() // For plugins ?></head>
    <body class="<?php pandora_body_class() ?>">
    <div class="wrapper">	<div class="always-white">		<div id="header">			<div class="site-title">				<h1><a href="<?php echo home_url() ?>/" title="<?php echo esc_html( get_bloginfo('name') ) ?>" rel="home">					<?php echo esc_html( get_bloginfo('name') ) ?>				</a></h1>			</div>			<div id="theme_logo">				<?php pandora_theme_logo(76) ?>			</div>			
    		</div><!--  #header -->

    Danke, dass du dir das nochmal anschauen willst. :)

  • zur frage mit dem hintergrund:

    wenn du das hintergrundbild so wie von mir beschrieben wiederholen lässt, dann könntest du dem content so einen weissen hintergrund geben:

    style.css zeile 252

    Code
    .always-white {
        [COLOR="#FF0000"]background-color: white;[/COLOR]
        float: left;
    }

    die rote zeile ergänzen.

    zur frage mit dem slider:

    dieser wird nicht in deiner header.php aufgerufen
    auf deiner seite "mitwirkende" ist er auch nicht integriert -> hier hast du ja scheints schon das headerbild als solches integriert.

    um ihn ganz zu elliminieren poste do bitte den inhalt der index.php.

    lg, pixselig

  • Das ist im Theme automatisch so eingestellt, dass der Slider nur auf der Startseite angezeigt wird.

    Hier mal die index.php

    PHP
    <?php get_header(); pandora_slider_header_place(); ?>	<?php pandora_display_main_menu(); ?>		<?php pandora_featured_pages(); ?>		<div class="container">		<div class="content content-mini">							<!-- start loop-->			<?php			//require navigations			pandora_index_navigation_links();						$counter = 0;			//set the user settings			$max = pandora_my_post_architecture();			$newest_max = $max[0];			$normal_max = $max[1] + $max[0];			$old_max = $max[2] + $max[1] + $max[0];			$archive_max = $max[3] + $max[2] + $max[1] + $max[0];
    
    
    			//set get type var page			$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("posts_per_page=".$archive_max."&paged=$paged");			//for page id overflow			if (pandora_pagenavigation() == 0){				pandora_oups_anti_url_hack();				}			else {				pandora_there_is_more_page_link();
    				while ( have_posts()) : the_post() ?> <?php 					if ($counter < $newest_max)					{						?><div id="post-<?php the_ID() ?>"  <?php post_class('post-newest-list') ?>>							<div class="entry-title-container">								<h2><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a></h2>							</div>							<div id="entry-comment-container">																		<div class="entry-image-container">									<?php									if ( has_post_thumbnail() ) 									{										?><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php											echo get_the_post_thumbnail(get_the_ID(), array(150,150) );										?></a><?php									} 									else 									{										?><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark">											<img src="<?php echo get_template_directory_uri() ?>/images/thumbnail.jpg" title="<?php the_title() ?> " width="150" height="150">										</a><?php									}									?>									<div id="entry-date-container">										<?php the_time('M. d.') ?>									</div>																		<?php comments_popup_link( __( 'Comments (0)', 'pandora' ), __( 'Comments (1)', 'pandora' ), __( 'Comments (%)', 'pandora' ) ) ?>								</div>								</div>							<div class="entry-author-container">								<?php the_content( ); ?>									<?php wp_link_pages(array('before' => '<p id="post-tags"><strong> '.__("Pages:","pandora").' </strong>', 'after' => '</p>', 'next_or_number' => 'number')); ?>							</div>														<div style="width:96%;clear:both;margin:auto;" class="pointed-line-top">							</div>														<div id="entry-content-container">								<?php printf( __( 'By %s', 'pandora' ), '<a href="' . get_author_posts_url( get_the_author_meta( 'ID' ) ) . '" title="' . sprintf( __( 'View all posts by %s', 'pandora' ), $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?>								| <?php printf( __( 'Posted in %s', 'pandora' ), get_the_category_list(', ') ) ?> |								<?php edit_post_link( __( 'Edit', 'pandora' )) ?>								<p id="post-tags"><?php the_tags( __( 'Tagged: ', 'pandora' ), ", ", "\n\t\t\t\t\t" )?></p>							</div>						</div><?php						$counter++;					}					elseif ($counter < $normal_max)					{						?><div id="post-<?php the_ID() ?>" <?php post_class('post-normal-list') ?>>							<div class="entry-image-container">								<?php								if ( has_post_thumbnail() ) 								{									?><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php										echo get_the_post_thumbnail(get_the_ID(), array(64,64) );									?></a><?php								} 								else 								{									?><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark">										<img src="<?php echo get_template_directory_uri() ?>/images/thumbnail.jpg" title="<?php the_title() ?> " width="64" height="64">									</a><?php								}								?>								<div id="entry-date-container">									<?php the_time('M. d.') ?>								</div>							</div>							<div class="entry-title-container">								<h2><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a></h2>							</div>							<div class="entry-author-container">								<span class="author vcard"><?php printf( __( 'By %s', 'pandora' ), '<a class="url fn n" href="' . get_author_posts_url( get_the_author_meta( 'ID' ) ) . '" title="' . sprintf( __( 'View all posts by %s', 'pandora' ), $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></span>								| <?php printf( __( 'Posted in %s', 'pandora' ), get_the_category_list(', ') ) ?> |								<?php edit_post_link( __( 'Edit', 'pandora' )) ?><br />								<?php comments_popup_link( __( 'Comments (0)', 'pandora' ), __( 'Comments (1)', 'pandora' ), __( 'Comments (%)', 'pandora' ) ) ?>							</div>														<div id="entry-content-container">								<?php the_content( ); ?>								<?php wp_link_pages(array('before' => '<p id="post-tags"><strong> '.__("Pages:","pandora").' </strong>', 'after' => '</p>', 'next_or_number' => 'number')); ?>								<p id="post-tags"><?php the_tags( __( 'Tagged: ', 'pandora' ), ", ", "\n\t\t\t\t\t" )?></p>							</div>						</div><?php						$counter++;					}					elseif ($counter < $old_max)					{						?><div id="post-<?php the_ID() ?>" <?php post_class('post-gallery-list') ?>>							<div style="float:left"><?php							if ( has_post_thumbnail() ) 							{								?><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php									echo get_the_post_thumbnail(get_the_ID(), array(50,50) );								?></a><?php							} 							else 							{								?><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark">									<img src="<?php echo get_template_directory_uri() ?>/images/thumbnail.jpg" title="<?php the_title() ?> " width="50" height="50">								</a><?php							}							?>							</div>							<div id="title" style="padding:0 10px 0 5px;float:left">							<a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php echo substr(get_the_title(),0,19) ?>...<br /><?php the_time('F jS, Y') ?></a>							</div>						</div><?php												$counter++;					}					elseif ($counter < $archive_max)					{						?><div <?php post_class('post-archive-list') ?>>							<ul id="post-<?php the_ID() ?>">								<li>									<a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'pandora'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a>									<p><?php the_time('F jS, Y') ?></p>								</li>							</ul>						</div><?php													$counter++;					}					endwhile; 				pandora_there_is_more_page_link();			}			//reset the position of list			wp_reset_query();			 ?>			<!-- end loop-->								</div><!-- #content -->		<?php get_sidebar('side'); ?>	</div><!-- #container -->
    <?php get_footer(); ?>
  • 1. Möglichkeit:

    PHP
    <?php get_header(); [COLOR="#FF0000"]pandora_slider_header_place(); [/COLOR]?>    <?php pandora_display_main_menu(); ?>        <?php pandora_featured_pages(); ?>        <div class="container">        <div class="content content-mini">                            <!-- start loop-->

    entferne hier mal das rot markierte (pandora_slider_header_place(); )
    ich weiss leider nicht wie genau das theme aufgebaut ist -> aber einen versuch ist es wert.

    2. Möglichkeit:

    style.css zeile 259

    Code
    .header_for_slider {
        background-image: url("http://forum.wpde.org/images/slider_shadow.jpg");
        background-position: center 220px;
        background-repeat: no-repeat;
        clear: both;
        height: 370px;
        width: 1000px;
        [COLOR="#008000"]display: none;[/COLOR]

    füge die grüne zeile hinzu.

    der rest (hintergrund wiederholung, weisser hintergrund, buttons) scheint ja funktioniert zu haben ;)

    lg, pixselig

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!