2 scrollbars mit verschiedenen farben

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • 2 scrollbars mit verschiedenen farben

    heiho

    hab da ne frage...
    ich habe einen scrollbalken für den inhalt, hätte aber auch noch einen für news..
    jedoch ist der hintergrund einmal weiss einmal blau....

    wie könnte mann das realisieren? also 2 verschieden farbige scrollbalken

    bisher hab ich nur das im stylesheet:

    PHP-Code:
    <style type="text/css">
    <!--
        {;}
        body  
        { 
            <?php
                
    if (strstr($HTTP_USER_AGENT,"Opera") || strstr($HTTP_USER_AGENT,"Netscape")) 
                {
                    echo 
    "";
                }
                else
                {
                    echo 
    "overflow: auto;";
                }
            
    ?>
            font-family: arial;
            scrollbar;
            scrollbar-3d-light-color : #ffffff;
            scrollbar-arrow-color : #ffffff;
            scrollbar-base-color : #9AB3E8;
            scrollbar-dark-shadow-color : #9AB3E8;
            scrollbar-highlight-color : #9AB3E8;
            scrollbar-shadow-color : #9AB3E8;
        }
        //-->
    </style>
    First: Things get worse under pressure.
    Second: If anything just cannot go wrong, it will anyway
    Third: A falling object will always land where it can do the most damage.

  • #2
    wenn du das per php übergibst (inhalt oder news) dann schreib doch per php die entsprechendenfarbwerte in dein stlyesheet (analog zum overflow:auto);
    Ich denke, also bin ich. - Einige sind trotzdem...

    Kommentar


    • #3
      ne, ich mein das nich so

      das angebene hier ist rein die definition für die scrollbar des contents
      ich möchte aber dies so erweitern, dass es eine 2. definition für die news gibt....
      First: Things get worse under pressure.
      Second: If anything just cannot go wrong, it will anyway
      Third: A falling object will always land where it can do the most damage.

      Kommentar


      • #4
        news und content ist auf der gleichen seite.....
        First: Things get worse under pressure.
        Second: If anything just cannot go wrong, it will anyway
        Third: A falling object will always land where it can do the most damage.

        Kommentar


        • #5
          dann musst du dir wohl 2 klassen erstellen, und entsprechend anwenden.
          h.a.n.d.
          Schmalle

          http://impressed.by
          http://blog.schmalenberger.it



          Wichtige Anmerkung: Ich habe keine Probleme mit Alkohol ...
          ... nur ohne :-)

          Kommentar


          • #6
            hmm, ja aber wie mach ich das mit dem anwenden....
            ich lade die news so:

            PHP-Code:
            <div style="position:absolute; left:918; top:310; width:100; height: 280; overflow: auto;">         
                <?php include("pages/news.php"); ?>
            </div>
            nun sollte aber der scrollbar ne andere farbe haben.....
            First: Things get worse under pressure.
            Second: If anything just cannot go wrong, it will anyway
            Third: A falling object will always land where it can do the most damage.

            Kommentar


            • #7
              PHP-Code:
              <div style="position:absolute; left:918; top:310; width:100; height: 280; 
              overflow: auto; scrollbar-3d-light-color : #ffffff; 
              scrollbar-arrow-color : #ffffff;scrollbar-base-color : #9AB3E8; 
              scrollbar-dark-shadow-color : #9AB3E8; 
              scrollbar-highlight-color : #9AB3E8; 
              scrollbar-shadow-color : #9AB3E8;">
              <?php include("pages/news.php"); ?>
              </div>
              so vielleicht?
              Ich denke, also bin ich. - Einige sind trotzdem...

              Kommentar


              • #8
                juheba¨!!

                so ist gegangen





                thanks
                First: Things get worse under pressure.
                Second: If anything just cannot go wrong, it will anyway
                Third: A falling object will always land where it can do the most damage.

                Kommentar

                Lädt...
                X