mediengestalter.info
FAQ :: Mitgliederliste :: MGi Team

Willkommen auf dem Portal für Mediengestalter

Aktuelles Datum und Uhrzeit: Fr 19.04.2024 06:16 Benutzername: Passwort: Auto-Login

Thema: Spry Menü Dreamweaver vom 31.07.2010


Neues Thema eröffnen   Neue Antwort erstellen MGi Foren-Übersicht -> Software - Nonprint -> Spry Menü Dreamweaver
Autor Nachricht
sternchen2010
Threadersteller

Dabei seit: 31.07.2010
Ort: -
Alter: 33
Geschlecht: Weiblich
Verfasst Sa 31.07.2010 12:09
Titel

Spry Menü Dreamweaver

Antworten mit Zitat Zum Seitenanfang

Hallo zusammen!

Ich bin neu hier und brauche dringend Hilfe. Ich habe in Dreamweaver eine Horizontale Spry Menüleiste erstellt. Hier mein Problem.




Ich möchte, dass wenn sie die Navigationsleiste öffnet, dass die über den Text geht und nicht darunter.
Muss ich das im SpryMenuBarHorizontal.css ändern? Wenn ja was und wo?

Wäre super, wenn wir jemand helfen könnte! Danke schonmal im voraus!
  View user's profile Private Nachricht senden
Lando

Dabei seit: 15.08.2008
Ort: Leipzig
Alter: 50
Geschlecht: Männlich
Verfasst Sa 31.07.2010 14:00
Titel

Antworten mit Zitat Zum Seitenanfang

Zeig mal den Code.

So aus dem Stehgreif vermute ich, dass Du Dein Menü per zindex über den Content legen musst.
  View user's profile Private Nachricht senden Website dieses Benutzers besuchen
Anzeige
Anzeige
sternchen2010
Threadersteller

Dabei seit: 31.07.2010
Ort: -
Alter: 33
Geschlecht: Weiblich
Verfasst Sa 31.07.2010 14:52
Titel

Antworten mit Zitat Zum Seitenanfang

welchen code meinst du? den von meiner SpryMenuBarHorizontal.css oder ein anderen.
mach jetzt einfach mal beide rein...

SpryMenuBarHorizontal.css

Code:
@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
   margin: 0;
   padding: 0;
   list-style-type: none;
   font-size: 100%;
   cursor: default;
   width: auto;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
   z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
   margin: 0;
   padding: 0;
   list-style-type: none;
   font-size: 100%;
   position: relative;
   text-align: left;
   cursor: pointer;
   width: 176.1px;
   float: left;
   left: 200;
   top: 250;
   height: 100;
   background-image: url(bilder/navigationsbalken.jpg);
   background-color: #FF0000;
   visibility: visible;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
   margin: 0;
   padding: 0;
   list-style-type: none;
   font-size: 100%;
   z-index: 1020;
   cursor: default;
   width: 8.2em;
   position: absolute;
   left: -1000em;
   visibility: visible;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
   left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
   width: 8.2em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
   position: absolute;
   margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
   left: auto;
   top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
   border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
   display: block;
   cursor: pointer;
   background-color: #EEE;
   padding: 0.5em 0.75em;
   color: #333;
   text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
   background-color: #33C;
   color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
   background-color: #33C;
   color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
   background-image: url(SpryMenuBarDown.gif);
   background-repeat: no-repeat;
   background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
   background-image: url(SpryMenuBarRight.gif);
   background-repeat: no-repeat;
   background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
   background-image: url(SpryMenuBarDownHover.gif);
   background-repeat: no-repeat;
   background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
   background-image: url(SpryMenuBarRightHover.gif);
   background-repeat: no-repeat;
   background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
   position: absolute;
   z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
   ul.MenuBarHorizontal li.MenuBarItemIE
   {
      display: inline;
      f\loat: left;
      background: #FFF;
   }
}


code von meiner index datei

Code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Offizieller Bruno Spengler Fanclub</title>
<style type="text/css">
<!--
#hintergrund {
   position:absolute;
   left:0px;
   top:0px;
   width:1280px;
   height:900px;
   z-index:1;
   background-color: b0b0b0;
   visibility: visible;
}
#content {
   position:absolute;
   left:200px;
   top:300px;
   width:880px;
   height:600px;
   z-index:2;
   overflow: scroll;
}
#headerbalken {
   position:absolute;
   left:200px;
   top:0px;
   width:880px;
   height:51px;
   z-index:3;
}
#navigationsbalken {
   position:absolute;
   left:200px;
   top:250px;
   width:880px;
   height:50px;
   z-index:4;
}
#headerbild {
   position:absolute;
   left:200px;
   top:51px;
   width:880px;
   height:198px;
   z-index:5;
}
.Stil1 {color: #b0b0b0}
#sprachen {
   position:absolute;
   left:666px;
   top:20px;
   width:410px;
   height:15px;
   z-index:6;
}
#navigationsbar {
   position:absolute;
   left:200px;
   top:258px;
   width:885px;
   height:36px;
   z-index:7;
}
-->
</style>
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.Stil3 {color: #FF0000; font-weight: bold; font-family: Arial, Helvetica, sans-serif;}
.Stil4 {color: #FFFFFF}
#neuigkeiten {
   position:absolute;
   left:228px;
   top:348px;
   width:171px;
   height:48px;
   z-index:8;
}
#text {
   position:absolute;
   left:228px;
   top:397px;
   width:451px;
   height:97px;
   z-index:9;
}
.Stil5 {
   font-size: x-large;
   font-weight: bold;
   font-family: Geneva, Arial, Helvetica, sans-serif;
}
#bild {
   position:absolute;
   left:720px;
   top:420px;
   width:150px;
   height:124px;
   z-index:10;
}
#bild2 {
   position:absolute;
   left:880px;
   top:420px;
   width:150px;
   height:126px;
   z-index:11;
}
#logo {
   position:absolute;
   left:202px;
   top:57px;
   width:140px;
   height:86px;
   z-index:12;
   visibility: hidden;
}
-->
</style>
</head>

<body>
<div class="Stil1" id="hintergrund"><img src="bilder/hintergrund farbe.jpg" width="1280" height="900" /></div>
<div id="content"><img src="bilder/content-transparent.png" width="880" height="900" /></div>
<div id="headerbalken"><img src="bilder/headerbalken.jpg" width="881" height="51" /></div>
<div id="navigationsbalken"><img src="bilder/navigationsbalken.jpg" width="881" height="51" /></div>
<div id="headerbild"></div>
<div id="sprachen"><img src="bilder/sprachen.png" width="419" height="14" border="0" /></div>
<div id="navigationsbar">
  <ul id="navigation" class="MenuBarHorizontal">
    <li>
      <div align="center"><a href="#" class="MenuBarItemSubmenu  Stil3 Stil4">Bruno Spengler</a>
        <ul id="BrunoSpengler">
          <li><a href="#" class="Stil4">Biographie</a></li>
          <li><a href="#">Steckbrief</a></li>
          <li><a href="#">Team</a></li>
          <li><a href="#">Auto</a></li>
          <li><a href="#">Renntermine</a></li>
          <li><a href="#">Ergebnisse</a></li>
          <li><a href="#">Gesamtwertung</a></li>
        </ul>
      </div>
    </li>
    <li>
      <div align="center"><a href="#" class="Stil3 MenuBarItemSubmenu">Der Fanclub</a>
        <ul id="DerFanclub">
          <li><a href="#">Fotos</a></li>
          <li><a href="#">Berichte</a></li>
          <li><a href="#">Vorstand</a></li>
          <li><a href="#">Satzung</a></li>
          <li><a href="#">Mitglied werden</a></li>
          <li><a href="#">Kontakt</a></li>
        </ul>
      </div>
    </li>
    <li>
      <div align="center"><a class="Stil3" href="#">Fanforum</a>      </div>
    </li>
    <li>
      <div align="center"><a href="#" class="Stil3 MenuBarItemSubmenu">Links</a>
        <ul id="Links">
          <li><a href="#">offizielle Hompage</a></li>
          <li><a href="#">Fanpages</a></li>
        </ul>
      </div>
    </li>
    <li>
      <div align="center"><a href="#" class="Stil3 MenuBarItemSubmenu">Allgemeines</a>
        <ul id="Allgemeines">
          <li><a href="#">Rechtliches</a></li>
          <li><a href="#">Impressum</a></li>
          <li><a href="#">Sitemap</a></li>
        </ul>
      </div>
    </li>
  </ul>
</div>
<script type="text/javascript">
<!--
var MenuBar1 = new Spry.Widget.MenuBar("navigation", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
</body>
</html>
[/
code]
  View user's profile Private Nachricht senden
sternchen2010
Threadersteller

Dabei seit: 31.07.2010
Ort: -
Alter: 33
Geschlecht: Weiblich
Verfasst Mi 11.08.2010 23:46
Titel

Antworten mit Zitat Zum Seitenanfang

kann jemand helfen? biiiite Lächel
  View user's profile Private Nachricht senden
 
Ähnliche Themen Spry Menü im Dreamweaver
Dreamweaver, Spry Menü:ausgewählten Menüpunkt hervorheben
Spry Menü in Dreamweaver CS4 - aktiven Button highlighten
Spry Menü Text ausrichten
Dreamweaver Spry Akkordeon
Registerkarten mit Spry in Dreamweaver
Neues Thema eröffnen   Neue Antwort erstellen
MGi Foren-Übersicht -> Software - Nonprint


Du kannst keine Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum nicht antworten.
Du kannst an Umfragen in diesem Forum nicht mitmachen.