Avatar billede craver35 Nybegynder
27. april 2012 - 11:25 Der er 9 kommentarer og
1 løsning

Dropdown menubar forsvinder under billeder?

Hej Eksperter.

Jeg har et problem med min dropdown menubar. I kan se problemet på min side http://www.damnfun.dk

Håber der er nogle der kan hjælpe.

Mvh. Jeppe S
Avatar billede NielsErikP Mester
27. april 2012 - 11:35 #1
Hej...

Hvordan forventer du at få hjælp, når du ikke reagere på den hjælp du får :
    http://www.eksperten.dk/spm/961942#reply_7938183
Avatar billede tobrukDk Novice
27. april 2012 - 11:37 #2
craver35 du har nogle fejl på siden,
Avatar billede NielsErikP Mester
27. april 2012 - 11:46 #3
Hej...

Men eller kan du jo prøve en af 2 ting, sætte :



z-index: 999;



på din menu.

Eller prøve at sætte dette efter dine video links... i src
Avatar billede NielsErikP Mester
27. april 2012 - 11:49 #4
Hej... ja fuck ekspertens parser

?wmode=transparent


Efter dine links.
Avatar billede craver35 Nybegynder
27. april 2012 - 12:57 #5
Hej NIelsErikP, jeg har ikke svaret på dine svar, da jeg ikke vidste i havde svaret, den poppede ikke up :)

Men mange tak for hjælpen, ved det andet spørgsmål, jeg er rimelig dårlig til php, så kunne du måske hjælpe mig med at sætte det ind i min kode? Hvis jeg sender koden? :)

Mvh. Jeppe S
Avatar billede NielsErikP Mester
27. april 2012 - 13:43 #6
Hej craver35...

Vi kan da prøve at kigge på det :-)
Du sender bare din kode... Er godt lovet væk her i aften til en fødselsdag... Men jeg skal nok kigge på det så hurtigt som muligt.
Avatar billede craver35 Nybegynder
27. april 2012 - 14:00 #7
Det er helt i orden, du kan bare kigge på det når du får tid :)

Index.php

<?php include"header.php" ?>
    <div id="col_left_2" style="background:#fff">
    <div class="titre_index">Featured Videoes</div>
    <div id="une">
 
    <?php
    $q=mysql_query("select * from videos where feat=1 order by video_id  desc limit 0,2");
    while($video=mysql_fetch_assoc($q)){
   
    $youtubeid = str_replace("watch?v=","",end(explode("/",$video['video_url'])));
      $youtubeid = reset(explode("&",$youtubeid));
     
    $thumb = "http://img.youtube.com/vi/$youtubeid/1.jpg";
      $file = "http://www.youtube.com/v/$youtubeid";
      $vtext=substr($video['video_desc'],0,100)."...";
      $vtit=html_entity_decode(substr($video['video_title'],0,50))."...";
            echo '<div class="bloc_une">
                <img src="'.$thumb.'" alt="'.$vtit.'" height="96" width="128">
                <div class="titre_une">'.$vtit.'</div>
                <div class="txt_une">'.$vtext.'</div>
                <a href="'.$video['video_id'].'_'.str_replace(" ","-",substr(html_entity_decode(strtolower($video['video_title'])),0,20)).'.html" class="btn_voir"></a>
                </div>';
    }
    ?>
   
    </div>
   
      <div style="float:left; margin-top:0px;">
    <div class="titre_index">New Videoes</div>
   
      <?php MyVideo::getPublicSide(); ?>
                 
    </div>
   
   
   
    </div>
    <div id="col_right_2">
<div class="c_index">
<?php
$q=mysql_query("select * from ads where id=1");
$r=mysql_fetch_assoc($q);
echo $r['ad3'];

?>
</div>


  <div class="titre_bloc_index">Most popular</div>

    <?php
    $q=mysql_query("select * from videos order by views desc  LIMIT 10  ");
    while($video=mysql_fetch_assoc($q)){
   
    $youtubeid = str_replace("watch?v=","",end(explode("/",$video['video_url'])));
      $youtubeid = reset(explode("&",$youtubeid));
     
    $thumb = "http://img.youtube.com/vi/$youtubeid/1.jpg";
      $file = "http://www.youtube.com/v/$youtubeid";
     
            echo '<a class="a_bloc" href="'.$video['video_id'].'_'.str_replace(" ","-",substr(html_entity_decode(strtolower($video['video_title'])),0,20)).'.html">
                <div class="bloc">
                <img src="'.$thumb.'" alt="'.$vtit.'" height="60" width="80">
                <div class="txt">'.html_entity_decode($video['video_title']).'</div>
                </div></a>';
    }
    ?>
           
               

</div>
<?php include"footer.php" ?>






Header.php

<?php

include("config.php");
include("lib/MyVideo.php");

$q=mysql_query("select * from settings");
$r=mysql_fetch_assoc($q);

?>

<!DOCTYPE html>

<html><head>
<?php
//page titles
$urlTitle = parse_url($_SERVER['REQUEST_URI']);
$pageName = $urlTitle['path'];
if($pageName == '/dmca.html'){
    $pageTitle = 'DMCA Policy - ';
} else if($pageName ==  '/contact.html'){
    $pageTitle = 'Contact Us - ';
} else if($pageName ==  '/tnc.html'){
    $pageTitle = 'Terms and Conditions - ';
} else if($pageName ==  '/privacy.html'){
    $pageTitle = 'Privacy Policy - ';
}else {
    $pageTitle = '';
}

$showT=isset($_GET['id'])?$_GET['id']:'';
$qT=mysql_query("select * from cat where id='$showT'");
$rowT=mysql_fetch_assoc($qT);

if(empty($rowT['cname'])){
    $titleT = $pageTitle;
} else {
    $titleT = $rowT['cname'].' Videos on ';
}
?>

<title><?php echo $titleT.''.$r['title']; ?></title>

<?php echo $r['meta']; ?>


<style>
        body { font-family:Arial, Helvetica, Sans-Serif; font-size:12px; margin:0px 20px;}
        /* menu */
        #menu{ margin:0px; padding:0px; list-style:none; color:#fff; line-height:45px; display:inline-block; float:left; z-index:1000; }
        #menu a { color:#fff; text-decoration:none; }
        #menu > li {background:#172322 none repeat scroll 0 0; cursor:pointer; float:left; position:relative;padding:0px 10px;}
        #menu > li a:hover {color:#B0D730;}
        #menu .logo {background:transparent none repeat scroll 0% 0%; padding:0px; background-color:Transparent;}
        /* sub-menus*/
        #menu ul { padding:0px; margin:0px; display:block; display:inline;}
        #menu li ul { position:absolute; left:-10px; top:0px; margin-top:45px; width:150px; line-height:16px; background-color:#172322; color:#0395CC; /* for IE */ display:none; }
        #menu li:hover ul { display:block;}
        #menu li ul li{ display:block; margin:5px 20px; padding: 5px 0px;  border-top: dotted 1px #606060; list-style-type:none; }
        #menu li ul li:first-child { border-top: none; }
        #menu li ul li a { display:block; color:#0395CC; }
        #menu li ul li a:hover { color:#7FCDFE; }
        /* main submenu */
        #menu #main { left:0px; top:-20px; padding-top:20px; background-color:#7cb7e3; color:#fff; z-index:999;}
        /* search */
        .searchContainer div { background-color:#fff; display:inline; padding:5px;}
        .searchContainer input[type="text"] {border:none;}
        .searchContainer img { vertical-align:middle;}
        /* corners*/
        #menu .corner_inset_left { position:absolute; top:0px; left:-12px;}
        #menu .corner_inset_right { position:absolute; top:0px; left:150px;}
        #menu .last { background:transparent none repeat scroll 0% 0%; margin:0px; padding:0px; border:none; position:relative; border:none; height:0px;}
        #menu .corner_left { position:absolute; left:0px; top:0px;}
        #menu .corner_right { position:absolute; left:132px; top:0px;}
        #menu .middle { position:absolute; left:18px; height: 20px; width: 115px; top:0px;}
    </style>
   
<meta name="description" content="<?php echo $r['desc']; ?>" />
<meta name="keywords" content="<?php echo $r['keywords']; ?>" />
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<link href="style.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15">
<script type="text/javascript" src="js/jquery-1.5.2.min.js"></script>

</head>



    <div style="margin-left:135px; text-align: center;">
<ul id="menu">
            <li class="logo">
                <img style="float:left;" alt="" src="menu_left.png"/>
                <ul id="main">
                    <li><b>Velkommen til Damnfun.dk</b> her kan du se sjove videoer og spille spil</li>
                    <li class="last">
                        <img class="corner_left" alt="" src="corner_blue_left.png"/>
                        <img class="middle" alt="" src="dot_blue.png"/>
                        <img class="corner_right" alt="" src="corner_blue_right.png"/>
                    </li>
                </ul>
               
            </li>
            <li><a href="#">Forsiden</a>
            </li>
            <li><a href="#">Videoer</a>
                <ul id="help">
                    <li>
                        <img class="corner_inset_left" alt="" src="corner_inset_left.png"/>
                        <a href="#">Biler</a>
                        <img class="corner_inset_right" alt="" src="corner_inset_right.png"/>
                    </li>
                    <li><a href="#">Crazy</a></li>
                    <li><a href="#">Funny</a></li>
                    <li><a href="#">Hot</a></li>
                    <li><a href="#">Reklamer</a></li>
                    <li><a href="#">Sexy</a></li>
                    <li><a href="#">Skjult kamera</a></li>
                    <li><a href="#">Sport</a></li>
                    <li><a href="#">TV</a></li>
                    <li class="last">
                        <img class="corner_left" alt="" src="corner_left.png"/>
                        <img class="middle" alt="" src="dot.gif"/>
                        <img class="corner_right" alt="" src="corner_right.png"/>
                    </li>
                </ul>
            </li>
            <li><a href="#">Spil</a>
              <ul id="help3">
                <li> <img class="corner_inset_left" alt="" src="corner_inset_left.png"/> <a href="#">Aktionspil</a> <img class="corner_inset_right" alt="" src="corner_inset_right.png"/> </li>
                <li><a href="#">Arkadespil</a></li>
                <li><a href="#">Brætspil</a></li>
                <li><a href="#">Klassikere</a></li>
                <li><a href="#">Kort & Poker</a></li>
                <li><a href="#">Strategi spil</a></li>
                <li><a href="#">Voksen spil</a></li>
                <li class="last"> <img class="corner_left" alt="" src="corner_left.png"/> <img class="middle" alt="" src="dot.gif"/> <img class="corner_right" alt="" src="corner_right.png"/> </li>
              </ul>
            </li>
            <li><a href="#">Kontakt</a>
            </li> 
      </ul>
      <img src="dot.gif" alt="" width="560" height="45" style="float:left;"/><img src="menu_right.png" width="18" height="45" /></div>
<div style="float:none; clear:both;"></div>
</div>
</div>
<div id="overall">




Det var min kode, håber du kan hjælpe mig! :)

Mvh. Jeppe S
Avatar billede NielsErikP Mester
27. april 2012 - 14:36 #8
Hej...

Ifølge #3.. Så prøv lige til en start at sætte dette ind i din <style> i head'en, som iøvrigt skal være <style type="text/css" > :



#menu #help, #menu #help3 { z-index: 999; }



Ellers kigger jeg lige videre på det iaften.
Avatar billede craver35 Nybegynder
27. april 2012 - 20:03 #9
Style.css er her:



*{margin:0;padding:0;font-family:Arial;}
        a{ text-decoration:none; color:#086faf;}
        a img{border:none}
        a:hover{text-decoration:non; color:#025f98;}
        body{background:#dbe7ee; font-family:Arial, Helvetica, Sans-Serif; font-size:12px; margin:0px 20px;}
        #header_main{background-image:url(images/bk-bg.png);background-repeat:repeat-x;}
        #overall{background-color:#FFFFFF; width:980px; overflow:auto; margin:0 auto; padding-bottom:10px;border:1px solid #e0e0e0;}
        #all{
    width:980px;
    overflow:hidden;
    margin: 0 auto;
    margin-bottom:10px;
    position:relative;
    height: 1000;
}
        #header{ width:980px;height:75px;position:relative;}
        #content{width:970px; background:#fff; overflow:hidden; padding:10px;padding-top:0px;padding-right:0px;}
        #left{width:650px; float:left; overflow:auto;position:relative;}
        #right{width: 300px; float:right; overflow:auto;position:relative;border-left: 1px solid #e0e0e0; background:#f6f6f6; padding:7px;}
        #over{background:url('images/over2.png'); height:385px;width:640px;position:relative; margin:0 auto}
        #vid_real{width:640px;position:relative; }
        #f2{position:absolute;left:250px;bottom:160px;}

       
        #share{ width: 140px; height:35px; background:url(images/share.png) top; display:block; position:absolute;left:145px;bottom:170px;}
       
       
       
       
        #play{ width: 140px; height:35px; background:url(images/play.png) top; display:block; position:absolute;left:335px;bottom:170px;}
       
   
   
        #f1,#f2,#f3,#f4,#f0{}/**/
        h1{font-size:17pt;margin-bottom:40px;color:#333;padding-bottom:10px;margin-top:10px;}
       
       
        .a_bloc{overflow:hidden;display:block;float:left;cursor:pointer;color:#38708f;background:#fff; border-bottom: #e0e0e0 1px solid;  height:80px; width:303px;position:relative; padding-bottom:5px; float:left; }
        .a_bloc:hover{ background:#e6edf1}
       
        .bloc img{position:absolute;left:10px; top:10px; border:1px solid #d3d3d3; padding:3px;}
        .bloc .txt{position:absolute;left:110px; top:10px;font-size:12px;width:180px; height:69px; color:#086faf;}
.error{       
        color: #D8000C;
background-color: #FFBABA;}
#vision{width:640px; height: 400px; float:left; overflow:hidden; text-align:center}
#nav_img{float:left;width:640px; margin-top:5px;}
#nav_img a{display:block;float:left;margin-left:5px;}

#bloc_others{  }
.infos{ background: #fff; border: #e0e0e0 1px solid; padding:10px; margin-top:10px; font-size:10pt;width:618px; color:#666666; float:left; margin-bottom:10px; text-align: right}
.blue_link{ color:#3B5998; text-decoration:none; font-weight:bold}
.blue_link:hover{ text-decoration: underline;}
#autres{ position:absolute;}
/*pagination */
ul{ list-style:none}
#paging_container1{ margin: 0 auto;margin-top: 40px; margin-bottom: 10px;}

.page_navigation , .alt_page_navigation{
    padding-bottom: 10px;
}

.page_navigation a, .alt_page_navigation a{
    padding:3px 5px;
    margin:2px;
    color:white;
    text-decoration:none;
    float: left;
    font-family: Tahoma;
    font-size: 12px;
    background-color:#3B5998;
}
.active_page{
    background-color:white !important;
    color:black !important;
}   

.content, .alt_content{
   
}

.content li, .alt_content li, .content > p{

}

        #menu{ margin:0px; padding:0px; list-style:none; color:#fff; line-height:45px; display:inline-block; float:left; z-index:1000; text-align:center;}
        #menu a { color:#fff; text-decoration:none; }
        #menu > li {background:#172322 none repeat scroll 0 0; cursor:pointer; float:left; position:relative;padding:0px 10px;}
        #menu > li a:hover {color:#B0D730;}
        #menu .logo {background:transparent none repeat scroll 0% 0%; padding:0px; background-color:Transparent;}
        /* sub-menus*/
        #menu ul { padding:0px; margin:0px; display:block; display:inline;}
        #menu li ul { position:absolute; left:-10px; top:0px; margin-top:45px; width:150px; line-height:16px; background-color:#172322; color:#0395CC; /* for IE */ display:none; }
        #menu li:hover ul { display:block;}
        #menu li ul li{ display:block; margin:5px 20px; padding: 5px 0px;  border-top: dotted 1px #606060; list-style-type:none; }
        #menu li ul li:first-child { border-top: none; }
        #menu li ul li a { display:block; color:#0395CC; }
        #menu li ul li a:hover { color:#7FCDFE; }
        /* main submenu */
        #menu #main { left:0px; top:-20px; padding-top:20px; background-color:#7cb7e3; color:#fff; z-index:999;}
        /* search */
        .searchContainer div { background-color:#fff; display:inline; padding:5px;}
        .searchContainer input[type="text"] {border:none;}
        .searchContainer img { vertical-align:middle;}
        /* corners*/
        #menu .corner_inset_left { position:absolute; top:0px; left:-12px;}
        #menu .corner_inset_right { position:absolute; top:0px; left:150px;}
        #menu .last { background:transparent none repeat scroll 0% 0%; margin:0px; padding:0px; border:none; position:relative; border:none; height:0px;}
        #menu .corner_left { position:absolute; left:0px; top:0px;}
        #menu .corner_right { position:absolute; left:132px; top:0px;}
        #menu .middle { position:absolute; left:18px; height: 20px; width: 115px; top:0px;}

.l2{ float:left; width: 300px; overflow:auto; margin-top:5px;}
.r2{ float:right; width: 278px; height:228px; border: 1px solid #e0e0e0; margin-right: 10px; margin-top:5px; padding:10px; font-size:11pt; color:#666666}
#titre_r2{ font-size:12pt; font-weight:; color:#000000; margin-bottom:5px;}
#footer{margin-top:10px; margin-bottom:0px; background:url("images/footer_bg.png") repeat-x; height:90px;}



.hover {
    background: url(star/star.png);
   
    cursor:pointer
}

.clearleft {
    clear: left;
}


.floatleft {
    float: left;
}

.highlight {
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
    bottom: 9px;
    color: #93784b;
    font-weight: bold;
}

.star_rating {
    font-size: 10pt;
    float:left; margin-right: 5px;
}



  .leftcurtain{
            width: 50%;
            height: 385px;
            top: 0px;
            left: 0px;
            position: absolute;
           
        }
        .rightcurtain{
            width: 51%;
            height: 385px;
            right: 0px;
            top: 0px;
            position: absolute;
           
        }
        .rightcurtain img, .leftcurtain img{
            width: 100%;
            height: 100%;
        }
       
        .rope{
            position: absolute;
            top: 0px;
            right: 20px;
       
        }
       
       
        /* INDEX*/
        #col_left_2{ width: 620px; float: left; }
        #col_right_2{ width: 300px;float:right; margin-right:20px; }
        .c_index{ width:300px; overflow:auto; height:300px; margin-top:15px; margin-bottom:15px;background-color:#f2f2f2;}
        .c_vindex{ width:300px; overflow:auto; height:300px; margin-top:15px; margin-bottom:15px; background-color:#f2f2f2; padding:2px;}
        .titre_index{
    height:34px;
    background-image:url(images/title_bg.png);
    background-repeat:repeat-x;
    line-height:34px;
    width:620px;
    float:left;
    font-size:16pt;
    color:#000000;
font-weight:;             font-family:Arial, Helvetica, sans-serif;
    position:relative;
    padding-left:5px;
    margin:15px;
}
        .titre_bloc_index{background-image:url(images/title_bg.png); height:34px; background-repeat:repeat-x;line-height:34px; width:300px; float:left; font-size:16pt; color:#000000; font-weight:; font-family:Arial, Helvetica, sans-serif; position:relative; padding-left:5px;}
        .page_title{height:34px; background-image:url(images/title_bg.png); background-repeat:repeat-x;line-height:34px; width:950px;; float:left; font-size:16pt; color:#000000; font-weight:; font-family:Arial, Helvetica, sans-serif; position:relative; padding-left:5px; margin:15px;}
        .pages_content{padding:15px;}
       
        #une{ width: 610px; padding:10px; padding-left:0px; background:#fff;padding-bottom:0px; margin-left:15px;}
        .bloc_une img{ float:left; margin-right:10px;}
        .bloc_une{ width:620px;  padding-bottom:10px;  float:left; height:100px; margin-bottom:9px; border-bottom:1px solid #CCC; position:relative}
        .btn_voir{ display: block; position:absolute; bottom:10px; right:0px; background:url(images/btn_voir.png) top; width: 102px; height: 38px;}
        .btn_voir:hover{ background:url(images/btn_voir.png) bottom;}
        .titre_une{ float:left; width:400px;color:#086faf; font-size:15px; font-weight:bold}
        .txt_une{ float:left; width:400px; font-size:12px; color:#666666; margin-top:5px;}
        .vcads { width:620px; background-color:#f2f2f2; height:70px; margin-left:15px;}
        .vcads2 {
    width:620px;
    background-color:#f2f2f2;
    height:70px;
    margin-left:15px;
    margin-top:15px;
    margin-bottom:10px;
    float:left;
}
       
        .bloc_video{ float:left; width:280px; border:1px solid #d3d3d3; background:#fff url(images/bg_vid_i.png) bottom repeat-x; height: 87px; padding:10px; margin-bottom:10px; position:relative; margin-left:15px;}
        .t_vid{ position:absolute; left: 130px; top:10px; width: 172px; font-size: 12px; font-weight: bold; color: #086faf;font-family:Arial, Helvetica, sans-serif;}
        .see_vid{ display:block; position:absolute; bottom:10px; right:10px; height: 27px; width:128px; background: url(images/see_vid.png) top}
        .see_vid:hover{background: url(images/see_vid.png) bottom}

form {
        float: left;
        border: 1px solid #ddd;
        padding: 10px 40px 20px 40px;
        margin: 75px 0 0 0;
        width: 715px;
        background: #fff;
               
        /* -- CSS3 - define rounded corners for the form -- */   
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;        
       
        /* -- CSS3 - create a background graident -- */
        background: -webkit-gradient(linear, 0% 0%, 0% 40%, from(#EEE), to(#FFFFFF));
        background: -moz-linear-gradient(0% 40% 90deg,#FFF, #EEE);
       
        /* -- CSS3 - add a drop shadow -- */
        -webkit-box-shadow:0px 0 50px #ccc;
        -moz-box-shadow:0px 0 50px #ccc;
        box-shadow:0px 0 50px #ccc;       

    }   
   
    fieldset { border: none; }
   

   
    input, textarea {        
        padding: 8px;
        margin: 4px 0 20px 0;
        background: #fff;
        width: 220px;
        font-size: 14px;
        color: #555;
        border: 1px #ddd solid;
       
        /* -- CSS3 Shadow - create a shadow around each input element -- */
        -webkit-box-shadow: 0px 0px 4px #aaa;
        -moz-box-shadow: 0px 0px 4px #aaa;
        box-shadow: 0px 0px 4px #aaa;
       
        /* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */       
        -webkit-transition: background 0.3s linear;                           
    }
   
    textarea {       
        width: 390px;
        height: 175px;                
    }
   
   
    input:hover, textarea:hover {
        background: #eee;
    }
        select{
        padding: 8px;
        margin: 4px 0 20px 0;
        background: #fff;
        width: 220px;
        font-size: 14px;
        color: #555;
        border: 1px #ddd solid;
       
        /* -- CSS3 Shadow - create a shadow around each input element -- */
        -webkit-box-shadow: 0px 0px 4px #aaa;
        -moz-box-shadow: 0px 0px 4px #aaa;
        box-shadow: 0px 0px 4px #aaa;
       
        /* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */       
        -webkit-transition: background 0.3s linear;           
        }
    input.submit {    
        width: 150px;
        color: #eee;
        text-transform: uppercase;
        margin-top: 10px;
        background-color: #18a5cc;
        border: none;
       
        /* -- CSS3 Transition - define which property to animate (i.e. the shadow)  -- */
        -webkit-transition: -webkit-box-shadow 0.3s linear;
       
        /* -- CSS3 - Rounded Corners -- */
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
                       
        /* -- CSS3 Shadow - create a shadow around each input element -- */
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#18a5cc), to(#0a85a8));
        background: -moz-linear-gradient(25% 75% 90deg,#0a85a8, #18a5cc);       
    }
    .submit{
    min-width: 150px;
        color: #eee;
        text-transform: uppercase;
        margin-top: 10px;
       
        border: none;
       
        /* -- CSS3 Transition - define which property to animate (i.e. the shadow)  -- */
        -webkit-transition: -webkit-box-shadow 0.3s linear;
       
        /* -- CSS3 - Rounded Corners -- */
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
            padding:5px;   
background-color: #18a5cc;           
        /* -- CSS3 Shadow - create a shadow around each input element -- */
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#18a5cc), to(#0a85a8));
        background: -moz-linear-gradient(25% 75% 90deg,#0a85a8, #18a5cc);       
    }
    input.submit:hover {        
        -webkit-box-shadow: 0px 0px 20px #555;
        -moz-box-shadow: 0px 0px 20px #aaa;
        box-shadow: 0px 0px 20px #555;   
        cursor:  pointer;
    }    
   
    #youtubeDataFetcherOutput{
    font-size:12px;
    overflow:hidden;
    height:200px;
    width:250px;
    float:right;
    }

#thumbnailsadmincontainer{
overflow: auto;
clear:both;
}
#thumbnailsadmincontainer ul{
margin: 0;
padding: 0;
list-style: none;
overflow: auto;
}
#thumbnailsadmincontainer ul li{
margin-right: 10px;
margin-bottom:10px;
font-size:12px;
}
#thumbnailsadmincontainer ul li img{
display: block;
background: #fff;
padding: 3px;
border: 1px solid #ccc;
width: 120px;
height: 90px;
outline: none;
-moz-box-shadow: 4px 4px 4px #bbb;
-webkit-box-shadow: 4px 4px 4px #bbb;
}
.tooltip {
    display:none;
    background-color:#000;
    border:1px solid #fff;
    padding:10px 15px;
    width:200px;
    display:none;
    color:#fff;
    text-align:left;
    font-size:12px;

    /* outline radius for mozilla/firefox only */
    -moz-box-shadow:0 0 10px #000;
    -webkit-box-shadow:0 0 10px #000;
}
.page_navigation , .alt_page_navigation{
    padding-bottom: 10px;
    height:30px;
}

.page_navigation a, .alt_page_navigation a{
    padding:3px 5px;
    margin:2px;
    color:white;
    text-decoration:none;
    float: left;
    font-family: Tahoma;
    font-size: 12px;
    background-color: #18a5cc;           
        /* -- CSS3 Shadow - create a shadow around each input element -- */
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#18a5cc), to(#0a85a8));
        background: -moz-linear-gradient(25% 75% 90deg,#0a85a8, #18a5cc);   
}
#publicside{
margin:auto;

border: 1px solid #ddd;
        padding: 40px 40px 40px 40px;
        margin-top:0px;
        width: 715px;
        background: #fff;
               
        /* -- CSS3 - define rounded corners for the form -- */   
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;        
       
        /* -- CSS3 - create a background graident -- */
        background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.14, rgb(13,76,140)),
    color-stop(0.57, rgb(39,107,168)),
    color-stop(0.79, rgb(67,140,202))
);
background-image: -moz-linear-gradient(
    center bottom,
    rgb(13,76,140) 14%,
    rgb(39,107,168) 57%,
    rgb(67,140,202) 79%
);
       
        /* -- CSS3 - add a drop shadow -- */
        -webkit-box-shadow:0px 0 50px #ccc;
        -moz-box-shadow:0px 0 50px #ccc;
        box-shadow:0px 0 50px #ccc;           
}

ul#navigation {
    height: 36px;
    padding: 20px 10px 0 15px;
    width: 780px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;

}

ul#navigation li {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    float: left;
    /*width: 168px;*/
    margin: 0 10px 0 0;
    background-color: #2B477D;
    border: solid 1px #415F9D;
    position: relative;
z-index:1;
}

ul#navigation li.selected {

}

ul#navigation li.shadow {
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -3px;
    left: 0;
    border: none;
    background: none;

    -webkit-box-shadow: #111 0 -2px 6px;
    -moz-box-shadow: #111 0 -2px 6px;
    box-shadow: #111 0 -2px 6px;
}

ul#navigation li a:link, ul#navigation li a:visited {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    display: block;
    text-align: center;
    //width: 168px;
    padding:0px 20px;
    height: 40px;
    line-height: 36px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    outline: none;
    float: left;
    background: #2B477D;
    -webkit-transition: background-color 0.3s linear;
    -moz-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
}

ul#navigation li a:hover {
    background-color: #5a87dd;
}

ul#navigation li.selected a:link, ul#navigation li.selected a:visited {
    color: #2B477D;
    border: solid 1px #fff;
    -webkit-transition: background-color 0.2s linear;
    background: -moz-linear-gradient(top center, #d1d1d1, #f2f2f2 80%) repeat scroll 0 0 #f2f2f2;
    background: -webkit-gradient(linear,left bottom,left top,color-stop(.2, #f2f2f2),color-stop(.8, #d1d1d1));
    background-color: #f2f2f2;
}

#overlay{
background:url('images/over4.png') no-repeat;
width:615x;
height:385px;
padding:10px;
margin:10px;
margin-top:15px;
}

#fbc{
margin:15px 10px 10px 15px;
width:610px;
}

#vspace{
margin:5px;
position:relative;
}

.iPhoneCheckContainer {
  position: relative;
  height: 27px;
  cursor: pointer;
  overflow: hidden; }
  .iPhoneCheckContainer input {
    position: absolute;
    top: 5px;
    left: 30px;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); }
  .iPhoneCheckContainer label {
    white-space: nowrap;
    font-size: 17px;
    line-height: 17px;
    font-weight: bold;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    height: 27px;
    position: absolute;
    width: auto;
    top: 0;
    padding-top: 5px;
    overflow: hidden; }
  .iPhoneCheckContainer, .iPhoneCheckContainer label {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none; }

.iPhoneCheckDisabled {
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); }

label.iPhoneCheckLabelOn {
  color: white;
  background: url('images/iphone-style-checkboxes/on.png?1282083753') no-repeat;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);
  left: 0;
  padding-top: 5px; }
  label.iPhoneCheckLabelOn span {
    padding-left: 8px; }
label.iPhoneCheckLabelOff {
  color: #8b8b8b;
  background: url('images/iphone-style-checkboxes/off.png?1282083753') no-repeat right 0;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.6);
  text-align: right;
  right: 0; }
  label.iPhoneCheckLabelOff span {
    padding-right: 8px; }

.iPhoneCheckHandle {
  display: block;
  height: 27px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: url('images/iphone-style-checkboxes/slider_left.png?1282083753') no-repeat;
  padding-left: 3px; }

.iPhoneCheckHandleRight {
  height: 100%;
  width: 100%;
  padding-right: 3px;
  background: url('images/iphone-style-checkboxes/slider_right.png?1282083753') no-repeat right 0; }

.iPhoneCheckHandleCenter {
  height: 100%;
  width: 100%;
  background: url('images/iphone-style-checkboxes/slider_center.png?1282083753'); }
 
/* ============================================================================================================================
== BUBBLE WITH AN ISOCELES TRIANGLE
** ============================================================================================================================ */

/* THE SPEECH BUBBLE
------------------------------------------------------------------------------------------------------------------------------- */

.triangle-isosceles {
    position:relative;
    padding:15px;
    margin:1em 0 3em;
    color:#000;
    background:#f3961c; /* default background for browsers without gradient support */
    /* css3 */
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9d835), to(#f3961c));
    background:-moz-linear-gradient(#f9d835, #f3961c);
    background:-o-linear-gradient(#f9d835, #f3961c);
    background:linear-gradient(#f9d835, #f3961c);
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

/* Variant : for top positioned triangle
------------------------------------------ */

.triangle-isosceles.top {
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#f3961c), to(#f9d835));
    background:-moz-linear-gradient(#f3961c, #f9d835);
    background:-o-linear-gradient(#f3961c, #f9d835);
    background:linear-gradient(#f3961c, #f9d835);
}

/* Variant : for left/right positioned triangle
------------------------------------------ */

.triangle-isosceles.left {
    margin-left:50px;
    background:#f3961c;
}

/* Variant : for right positioned triangle
------------------------------------------ */

.triangle-isosceles.right {
    margin-right:50px;
    background:#f3961c;
}

/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */

/* creates triangle */
.triangle-isosceles:after {
    content:"";
    position:absolute;
    bottom:-15px; /* value = - border-top-width - border-bottom-width */
    left:50px; /* controls horizontal position */
    border-width:15px 15px 0; /* vary these values to change the angle of the vertex */
    border-style:solid;
    border-color:#f3961c transparent;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* Variant : top
------------------------------------------ */

.triangle-isosceles.top:after {
    top:-15px; /* value = - border-top-width - border-bottom-width */
    right:50px; /* controls horizontal position */
    bottom:auto;
    left:auto;
    border-width:0 15px 15px; /* vary these values to change the angle of the vertex */
    border-color:#f3961c transparent;
}

/* Variant : left
------------------------------------------ */

.triangle-isosceles.left:after {
    top:16px; /* controls vertical position */
    left:-50px; /* value = - border-left-width - border-right-width */
    bottom:auto;
    border-width:10px 50px 10px 0;
    border-color:transparent #f3961c;
}

/* Variant : right
------------------------------------------ */

.triangle-isosceles.right:after {
    top:16px; /* controls vertical position */
    right:-50px; /* value = - border-left-width - border-right-width */
    bottom:auto;
    left:auto;
    border-width:10px 0 10px 50px;
    border-color:transparent #f3961c;
}


/* ============================================================================================================================
== BUBBLE WITH A RIGHT-ANGLED TRIANGLE
** ============================================================================================================================ */

/* THE SPEECH BUBBLE
------------------------------------------------------------------------------------------------------------------------------- */

.triangle-right {
    position:relative;
    padding:15px;
    margin:1em 0 3em;
    color:#fff;
    background:#075698; /* default background for browsers without gradient support */
    /* css3 */
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
    background:-moz-linear-gradient(#2e88c4, #075698);
    background:-o-linear-gradient(#2e88c4, #075698);
    background:linear-gradient(#2e88c4, #075698);
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

/* Variant : for top positioned triangle
------------------------------------------ */

.triangle-right.top {
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#075698), to(#2e88c4));
    background:-moz-linear-gradient(#075698, #2e88c4);
    background:-o-linear-gradient(#075698, #2e88c4);
    background:linear-gradient(#075698, #2e88c4);
}

/* Variant : for left positioned triangle
------------------------------------------ */

.triangle-right.left {
    margin-left:40px;
    background:#075698;
}

/* Variant : for right positioned triangle
------------------------------------------ */

.triangle-right.right {
    margin-right:40px;
    background:#075698;
}

/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */

.triangle-right:after {
    content:"";
    position:absolute;
    bottom:-20px; /* value = - border-top-width - border-bottom-width */
    left:50px; /* controls horizontal position */
    border-width:20px 0 0 20px; /* vary these values to change the angle of the vertex */
    border-style:solid;
    border-color:#075698 transparent;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* Variant : top
------------------------------------------ */

.triangle-right.top:after {
    top:-20px; /* value = - border-top-width - border-bottom-width */
    right:50px; /* controls horizontal position */
    bottom:auto;
    left:auto;
    border-width:20px 20px 0 0; /* vary these values to change the angle of the vertex */
    border-color:transparent #075698;
}

/* Variant : left
------------------------------------------ */

.triangle-right.left:after {
    top:16px;
    left:-40px; /* value = - border-left-width - border-right-width */
    bottom:auto;
    border-width:15px 40px 0 0; /* vary these values to change the angle of the vertex */
    border-color:transparent #075698;
}

/* Variant : right
------------------------------------------ */

.triangle-right.right:after {
    top:16px;
    right:-40px; /* value = - border-left-width - border-right-width */
    bottom:auto;
    left:auto;
    border-width:15px 0 0 40px; /* vary these values to change the angle of the vertex */
    border-color:transparent #075698 ;
}


/* ============================================================================================================================
== BUBBLE WITH AN OBTUSE TRIANGLE
** ============================================================================================================================ */

/* THE SPEECH BUBBLE
------------------------------------------------------------------------------------------------------------------------------- */

.triangle-obtuse {
    position:relative;
    padding:15px;
    margin:1em 0 3em;
    color:#fff;
    background:#c81e2b;
    /* css3 */
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#f04349), to(#c81e2b));
    background:-moz-linear-gradient(#f04349, #c81e2b);
    background:-o-linear-gradient(#f04349, #c81e2b);
    background:linear-gradient(#f04349, #c81e2b);
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

/* Variant : for top positioned triangle
------------------------------------------ */

.triangle-obtuse.top {
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#c81e2b), to(#f04349));
    background:-moz-linear-gradient(#c81e2b, #f04349);
    background:-o-linear-gradient(#c81e2b, #f04349);
    background:linear-gradient(#c81e2b, #f04349);
}

/* Variant : for left positioned triangle
------------------------------------------ */

.triangle-obtuse.left {
    margin-left:50px;
    background:#c81e2b;
}

/* Variant : for right positioned triangle
------------------------------------------ */

.triangle-obtuse.right {
    margin-right:50px;
    background:#c81e2b;
}

/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */

/* creates the wider right-angled triangle */
.triangle-obtuse:before {
    content:"";
    position:absolute;
    bottom:-20px; /* value = - border-top-width - border-bottom-width */
    left:60px; /* controls horizontal position */
    border:0;
    border-right-width:30px; /* vary this value to change the angle of the vertex */
    border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :after */
    border-style:solid;
    border-color:transparent #c81e2b;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* creates the narrower right-angled triangle */
.triangle-obtuse:after {
    content:"";
    position:absolute;
    bottom:-20px; /* value = - border-top-width - border-bottom-width */
    left:80px; /* value = (:before's left) + (:before's border-right/left-width)  - (:after's border-right/left-width) */
    border:0;
    border-right-width:10px; /* vary this value to change the angle of the vertex */
    border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :before */
    border-style:solid;
    border-color:transparent #fff;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* Variant : top
------------------------------------------ */

.triangle-obtuse.top:before {
    top:-20px; /* value = - border-top-width - border-bottom-width */
    bottom:auto;
    left:auto;
    right:60px; /* controls horizontal position */
    border:0;
    border-left-width:30px; /* vary this value to change the width of the triangle */
    border-top-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :after */
    border-color:transparent #c81e2b;
}

.triangle-obtuse.top:after {
    top:-20px; /* value = - border-top-width - border-bottom-width */
    bottom:auto;
    left:auto;
    right:80px; /* value = (:before's right) + (:before's border-right/left-width)  - (:after's border-right/left-width) */
    border-width:0;
    border-left-width:10px; /* vary this value to change the width of the triangle */
    border-top-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :before */
    border-color:transparent #fff;
}

/* Variant : left
------------------------------------------ */

.triangle-obtuse.left:before {
    top:15px; /* controls vertical position */
    bottom:auto;
    left:-50px; /* value = - border-left-width - border-right-width */
    border:0;
    border-bottom-width:30px; /* vary this value to change the height of the triangle */
    border-left-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :after */
    border-color:#c81e2b transparent;
}

.triangle-obtuse.left:after {
    top:35px; /* value = (:before's top) + (:before's border-top/bottom-width)  - (:after's border-top/bottom-width) */
    bottom:auto;
    left:-50px; /* value = - border-left-width - border-right-width */
    border:0;
    border-bottom-width:10px; /* vary this value to change the height of the triangle */
    border-left-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :before */
    border-color:#fff transparent;
}

/* Variant : right
------------------------------------------ */

.triangle-obtuse.right:before {
    top:15px; /* controls vertical position */
    bottom:auto;
    left:auto;
    right:-50px; /* value = - border-left-width - border-right-width */
    border:0;
    border-bottom-width:30px; /* vary this value to change the height of the triangle */
    border-right-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :after */
    border-color:#c81e2b transparent;
}

.triangle-obtuse.right:after {
    top:35px; /* value = (:before's top) + (:before's border-top/bottom-width)  - (:after's border-top/bottom-width) */
    bottom:auto;
    right:-50px; /* value = - border-left-width - border-right-width */
    left:auto;
    border:0;
    border-bottom-width:10px; /* vary this value to change the height of the triangle */
    border-right-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :before */
    border-color:#fff transparent;
}


/* ============================================================================================================================
== BUBBLE WITH A BORDER AND TRIANGLE
** ============================================================================================================================ */

/* THE SPEECH BUBBLE
------------------------------------------------------------------------------------------------------------------------------- */

.triangle-border {
    position:relative;
    padding:15px;
    margin:1em 0 3em;
    border:5px solid #5a8f00;
    color:#333;
    background:#fff;
    /* css3 */
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

/* Variant : for left positioned triangle
------------------------------------------ */

.triangle-border.left {
    margin-left:30px;
}

/* Variant : for right positioned triangle
------------------------------------------ */

.triangle-border.right {
    margin-right:30px;
}

/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */

.triangle-border:before {
    content:"";
    position:absolute;
    bottom:-20px; /* value = - border-top-width - border-bottom-width */
    left:40px; /* controls horizontal position */
    border-width:20px 20px 0;
    border-style:solid;
    border-color:#5a8f00 transparent;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* creates the smaller  triangle */
.triangle-border:after {
    content:"";
    position:absolute;
    bottom:-13px; /* value = - border-top-width - border-bottom-width */
    left:47px; /* value = (:before left) + (:before border-left) - (:after border-left) */
    border-width:13px 13px 0;
    border-style:solid;
    border-color:#fff transparent;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* Variant : top
------------------------------------------ */

/* creates the larger triangle */
.triangle-border.top:before {
    top:-20px; /* value = - border-top-width - border-bottom-width */
    bottom:auto;
    left:auto;
    right:40px; /* controls horizontal position */
    border-width:0 20px 20px;
}

/* creates the smaller  triangle */
.triangle-border.top:after {
    top:-13px; /* value = - border-top-width - border-bottom-width */
    bottom:auto;
    left:auto;
    right:47px; /* value = (:before right) + (:before border-right) - (:after border-right) */
    border-width:0 13px 13px;
}

/* Variant : left
------------------------------------------ */

/* creates the larger triangle */
.triangle-border.left:before {
    top:10px; /* controls vertical position */
    bottom:auto;
    left:-30px; /* value = - border-left-width - border-right-width */
    border-width:15px 30px 15px 0;
    border-color:transparent #5a8f00;
}

/* creates the smaller  triangle */
.triangle-border.left:after {
    top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
    bottom:auto;
    left:-21px; /* value = - border-left-width - border-right-width */
    border-width:9px 21px 9px 0;
    border-color:transparent #fff;
}

/* Variant : right
------------------------------------------ */

/* creates the larger triangle */
.triangle-border.right:before {
    top:10px; /* controls vertical position */
    bottom:auto;
    left:auto;
    right:-30px; /* value = - border-left-width - border-right-width */
    border-width:15px 0 15px 30px;
    border-color:transparent #5a8f00;
}

/* creates the smaller  triangle */
.triangle-border.right:after {
    top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
    bottom:auto;
    left:auto;
    right:-21px; /* value = - border-left-width - border-right-width */
    border-width:9px 0 9px 21px;
    border-color:transparent #fff;
}


/* ============================================================================================================================
== SPEECH BUBBLE ICON
** ============================================================================================================================ */

.example-commentheading {
    position:relative;
    padding:0;
    color:#b513af;
}

/* creates the rectangle */
.example-commentheading:before {
    content:"";
    position:absolute;
    top:9px;
    left:-25px;
    width:15px;
    height:10px;
    background:#b513af;
    /* css3 */
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}

/* creates the triangle */
.example-commentheading:after {
    content:"";
    position:absolute;
    top:15px;
    left:-19px;
    border:4px solid transparent;
    border-left-color:#b513af;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}


/* ============================================================================================================================
== BLOCKQUOTE WITH RIGHT-ANGLED TRIANGLE
** ============================================================================================================================ */

.example-right {
    position:relative;
    padding:15px 30px;
    margin:0;
    color:#fff;
    background:#5a8f00; /* default background for browsers without gradient support */
    /* css3 */
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#b8db29), to(#5a8f00));
    background:-moz-linear-gradient(#b8db29, #5a8f00);
    background:-o-linear-gradient(#b8db29, #5a8f00);
    background:linear-gradient(#b8db29, #5a8f00);
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

/* display of quote author (alternatively use a class on the element following the blockquote) */
.example-right + p {margin:15px 0 2em 85px; font-style:italic;}

/* creates the triangle */
.example-right:after {
    content:"";
    position:absolute;
    bottom:-50px;
    left:50px;
    border-width:0 20px 50px 0px;
    border-style:solid;
    border-color:transparent #5a8f00;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}


/* ============================================================================================================================
== BLOCKQUOTE WITH OBTUSE TRIANGLE
** ============================================================================================================================ */

.example-obtuse {
    position:relative;
    padding:15px 30px;
    margin:0;
    color:#000;
    background:#f3961c; /* default background for browsers without gradient support */
    /* css3 */
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9d835), to(#f3961c));
    background:-moz-linear-gradient(#f9d835, #f3961c);
    background:-o-linear-gradient(#f9d835, #f3961c);
    background:linear-gradient(#f9d835, #f3961c);
    /* Using longhand to avoid inconsistencies between Safari 4 and Chrome 4 */
    -webkit-border-top-left-radius:25px 50px;
    -webkit-border-top-right-radius:25px 50px;
    -webkit-border-bottom-right-radius:25px 50px;
    -webkit-border-bottom-left-radius:25px 50px;
    -moz-border-radius:25px / 50px;
    border-radius:25px / 50px;
}

/* display of quote author (alternatively use a class on the element following the blockquote) */
.example-obtuse + p {margin:10px 150px 2em 0; text-align:right; font-style:italic;}

/* creates the larger triangle */
.example-obtuse:before {
    content:"";
    position:absolute;
    bottom:-30px;
    right:80px;
    border-width:0 0 30px 50px;
    border-style:solid;
    border-color:transparent #f3961c;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* creates the smaller triangle */
.example-obtuse:after {
    content:"";
    position:absolute;
    bottom:-30px;
    right:110px;
    border-width:0 0 30px 20px;
    border-style:solid;
    border-color:transparent #fff;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}


/* ============================================================================================================================
== TWITTER
** ============================================================================================================================ */

.example-twitter {
    position:relative;
    padding:15px;
    margin:100px 0 0.5em;
    color:#333;
    background:#eee;
    /* css3 */
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

.example-twitter p {font-size:28px; line-height:1.25em;}

/* this isn't necessary, just saves me having to edit the HTML of the demo */
.example-twitter:before {
    content:url(twitter-logo.gif);
    position:absolute;
    top:-60px;
    left:0;
    width:155px;
    height:36px;
    /* reduce the damage in FF3.0 */
    display:block;
}

/* creates the triangle */
.example-twitter:after {
    content:"";
    position:absolute;
    top:-30px;
    left:50px;
    border:15px solid transparent;
    border-bottom-color:#eee;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* display of quote author (alternatively use a class on the element following the blockquote) */
.example-twitter + p {padding-left:15px; font:14px Arial, sans-serif;}


/* ============================================================================================================================
== NUMBER
** ============================================================================================================================ */

.example-number {
    position:relative;
    width:200px;
    height:200px;
    margin:50px 0 200px;
    text-align:center;
    font:140px/200px Arial, sans-serif;
    color:#fff;
    background:#C91F2C;
}

/* creates the larger triangle */
.example-number:before {
    content:"";
    position:absolute;
    bottom:-140px;
    right:0;
    border-width:0 0 140px 140px;
    border-style:solid;
    border-color:transparent #C91F2C;
}

/* creates the larger triangle */
.example-number:after {
    content:"";
    position:absolute;
    bottom:-140px;
    right:85px;
    border-width:0 0 140px 55px;
    border-style:solid;
    border-color:transparent #fff;
}


/* ============================================================================================================================
== PINCHED SPEECH BUBBLE (more CSS3)
** ============================================================================================================================ */

.pinched {
    position:relative;
    padding:15px;
    margin:50px 0 3em;
    text-align:center;
    color:#fff;
    background:#333;
    /* css3 */
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

/* creates a rectangle of the colour wanted for the pointy bit */
.pinched:before {
    content:"";
    position:absolute;
    top:-20px;
    left:50%;
    width:100px;
    height:20px;
    margin:0 0 0 -50px;
    background:#333;
}

/* creates a rounded rectangle to cover part of the rectangle generated above */
.pinched:after {
    content:"";
    position:absolute;
    top:-20px;
    left:0;
    width:50%;
    height:20px;
    background:#fff;
    /* css3 */
    -webkit-border-bottom-right-radius:15px;
    -moz-border-radius-bottomright:15px;
    border-bottom-right-radius:15px;
}

/* creates the other rounded rectangle */
.pinched > :first-child:before {
    content:"";
    position:absolute;
    top:-20px;
    right:0;
    width:50%;
    height:20px;
    background:#fff;
    /* css3 */
    -webkit-border-bottom-left-radius:15px;
    -moz-border-radius-bottomleft:15px;
    border-bottom-left-radius:15px;
}


/* ============================================================================================================================
== OVAL SPEECH BUBBLE (more CSS3)
** ============================================================================================================================ */

.oval-speech {
    position:relative;
    width:270px;
    padding:50px 40px;
    margin:1em auto 50px;
    text-align:center;
    color:#fff;
    background:#5a8f00;
    /* css3 */
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#b8db29), to(#5a8f00));
    background:-moz-linear-gradient(#b8db29, #5a8f00);
    background:-o-linear-gradient(#b8db29, #5a8f00);
    background:linear-gradient(#b8db29, #5a8f00);
    /*
    NOTES:
    -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4
    -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4
    Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
    */
    -webkit-border-top-left-radius:220px 120px;
    -webkit-border-top-right-radius:220px 120px;
    -webkit-border-bottom-right-radius:220px 120px;
    -webkit-border-bottom-left-radius:220px 120px;
    -moz-border-radius:220px / 120px;
    border-radius:220px / 120px;
}

.oval-speech p {font-size:1.25em;}

/* creates part of the curve */
.oval-speech:before {
    content:"";
    position:absolute;
    z-index:-1;
    bottom:-30px;
    right:50%;
    height:30px;
    border-right:60px solid #5a8f00;
    background:#5a8f00; /* need this for webkit - bug in handling of border-radius */
    /* css3 */
    -webkit-border-bottom-right-radius:80px 50px;
    -moz-border-radius-bottomright:80px 50px;
    border-bottom-right-radius:80px 50px;
    /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
    -webkit-transform:translate(0, -2px);
    -moz-transform:translate(0, -2px);
    -ms-transform:translate(0, -2px);
    -o-transform:translate(0, -2px);
    transform:translate(0, -2px);
}

/* creates part of the curved pointy bit */
.oval-speech:after {
    content:"";
    position:absolute;
    z-index:-1;
    bottom:-30px;
    right:50%;
    width:60px;
    height:30px;
    background:#fff;
    /* css3 */
    -webkit-border-bottom-right-radius:40px 50px;
    -moz-border-radius-bottomright:40px 50px;
    border-bottom-right-radius:40px 50px;
    /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
    -webkit-transform:translate(-30px, -2px);
    -moz-transform:translate(-30px, -2px);
    -ms-transform:translate(-30px, -2px);
    -o-transform:translate(-30px, -2px);
    transform:translate(-30px, -2px);
}


/* ============================================================================================================================
== OVAL THOUGHT BUBBLE (more CSS3)
** ============================================================================================================================ */

.oval-thought {
    position:relative;
    width:270px;
    padding:50px 40px;
    margin:1em auto 80px;
    text-align:center;
    color:#fff;
    background:#075698;
    /* css3 */
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
    background:-moz-linear-gradient(#2e88c4, #075698);
    background:-o-linear-gradient(#2e88c4, #075698);
    background:linear-gradient(#2e88c4, #075698);
    /*
    NOTES:
    -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4
    -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4
    Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
    */
    -webkit-border-top-left-radius:220px 120px;
    -webkit-border-top-right-radius:220px 120px;
    -webkit-border-bottom-right-radius:220px 120px;
    -webkit-border-bottom-left-radius:220px 120px;
    -moz-border-radius:220px / 120px;
    border-radius:220px / 120px;
}

.oval-thought p {font-size:1.25em;}

/* creates the larger circle */
.oval-thought:before {
    content:"";
    position:absolute;
    bottom:-20px;
    left:50px;
    width:30px;
    height:30px;
    background:#075698;
    /* css3 */
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px;
}

/* creates the smaller circle */
.oval-thought:after {
    content:"";
    position:absolute;
    bottom:-30px;
    left:30px;
    width:15px;
    height:15px;
    background:#075698;
    /* css3 */
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
    border-radius:15px;
}

/* ============================================================================================================================
== OVAL SPEECH BUBBLE WITH QUOTATION MARKS (more CSS3)
** ============================================================================================================================ */

.oval-quotes {
    position:relative;
    width:400px;
    height:350px;
    margin:2em auto 10px;
    color:#000;
    background:#ffed26;
    /* css3 */
    /*
    NOTES:
    -webkit-border-radius:Apx Bpx; // produces oval in safari 4 and chrome 4
    -webkit-border-radius:Apx / Bpx; // produces oval in chrome 4 (again!) but not supported in safari 4
    Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
    */
    -webkit-border-top-left-radius:400px 350px;
    -webkit-border-top-right-radius:400px 350px;
    -webkit-border-bottom-right-radius:400px 350px;
    -webkit-border-bottom-left-radius:400px 350px;
    -moz-border-radius:400px / 350px;
    border-radius:400px / 350px;
}

/* creates opening quotation mark */
.oval-quotes:before {
    content:"\201C";
    position:absolute;
    z-index:1;
    top:20px;
    left:20px;
    font:80px/1 Georgia, serif;
    color:#ffed26;
}

/* creates closing quotation mark */
.oval-quotes:after {
    content:"\201D";
    position:absolute;
    z-index:1;
    bottom:0;
    right:20px;
    font:80px/0.25 Georgia, serif;
    color:#ffed26;
}

.oval-quotes p {
    width:250px;
    height:250px;
    padding:50px 0 0;
    margin:0 auto;
    text-align:center;
    font-size:35px;
}

/* creates smaller curve */
.oval-quotes p:before {
    content:"";
    position:absolute;
    z-index:-1;
    bottom:-30px;
    right:55%;
    width:180px; /* wider than necessary to make it look a bit better in IE8 */
    height:60px;
    background:#fff; /* need this for webkit - bug in handling of border-radius */
    /* css3 */
    -webkit-border-bottom-right-radius:40px 50px;
    -moz-border-radius-bottomright:40px 50px;
    border-bottom-right-radius:40px 50px;
    /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
    -webkit-transform:translate(-30px, -2px);
    -moz-transform:translate(-30px, -2px);
    -ms-transform:translate(-30px, -2px);
    -o-transform:translate(-30px, -2px);
    transform:translate(-30px, -2px);
}

/* creates larger curve */
.oval-quotes p:after {
    content:"";
    position:absolute;
    z-index:-2;
    bottom:-30px;
    right:25%;
    height:80px;
    border-right:200px solid #ffed26;
    background:#ffed26; /* need this for webkit - bug in handling of border-radius */
    /* css3 */
    -webkit-border-bottom-right-radius:200px 100px;
    -moz-border-radius-bottomright:200px 100px;
    border-bottom-right-radius:200px 100px;
    /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
    -webkit-transform:translate(0, -2px);
    -moz-transform:translate(0, -2px);
    -ms-transform:translate(0, -2px);
    -o-transform:translate(0, -2px);
    transform:translate(0, -2px);
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

.oval-quotes + p {
    position:relative; /* part of the IE8 width compromise */
    width:150px;
    margin:0 0 2em;
    font-size:18px;
    font-weight:bold;
}


/* ============================================================================================================================
== RECTANGLE-BORDER STYLE WITH CURVE
** ============================================================================================================================ */

.rectangle-speech-border {
    position:relative;
    padding:50px 15px;
    margin:1em 0 3em;
    border:10px solid #5a8f00;
    text-align:center;
    color:#333;
    background:#fff;
    /* css3 */
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    border-radius:20px;
}

/* creates larger curve */
.rectangle-speech-border:before {
    content:"";
    position:absolute;
    z-index:10;
    bottom:-40px;
    left:50px;
    width:50px;
    height:30px;
    border-style:solid;
    border-width:0 10px 10px 0;
    border-color:#5a8f00;
    background:transparent;
    /* css3 */
    -webkit-border-bottom-right-radius:80px 50px;
    -moz-border-radius-bottomright:80px 50px;
    border-bottom-right-radius:80px 50px;
    /* reduce the damage in FF3.0 */
    display:block;
}

/* creates smaller curve */
.rectangle-speech-border:after {
    content:"";
    position:absolute;
    z-index:10;
    bottom:-40px;
    left:50px;
    width:20px;
    height:30px;
    border-style:solid;
    border-width:0 10px 10px 0;
    border-color:#5a8f00;
    background:transparent;
    /* css3 */
    -webkit-border-bottom-right-radius:40px 50px;
    -moz-border-radius-bottomright:40px 50px;
    border-bottom-right-radius:40px 50px;
    /* reduce the damage in FF3.0 */
    display:block;
}

/* creates a small circle to produce a rounded point where the two curves meet */
.rectangle-speech-border > :first-child:before {
    content:"";
    position:absolute;
    bottom:-40px;
    left:45px;
    width:10px;
    height:10px;
    background:#5a8f00;
    /* css3 */
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

/* creates a white rectangle to cover part of the oval border*/
.rectangle-speech-border > :first-child:after {
    content:"";
    position:absolute;
    bottom:-10px;
    left:76px;
    width:24px;
    height:15px;
    background:#fff;
}

/* ============================================================================================================================
== OVER SPEECH BUBBLE, EMPTY, WITH BORDER (more CSS3)
** ============================================================================================================================ */

.oval-speech-border {
    position:relative;
    padding:70px 30px;
    margin:1em auto 60px;
    border:10px solid #f3961c;
    text-align:center;
    color:#333;
    background:#fff;
    /* css3 */
    /*
    NOTES:
    -webkit-border-radius:240px 140px; // produces oval in safari 4 and chrome 4
    -webkit-border-radius:240px / 140px; // produces oval in chrome 4 (again!) but not supported in safari 4
    Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
    */
    -webkit-border-top-left-radius:240px 140px;
    -webkit-border-top-right-radius:240px 140px;
    -webkit-border-bottom-right-radius:240px 140px;
    -webkit-border-bottom-left-radius:240px 140px;
    -moz-border-radius:240px / 140px;
    border-radius:240px / 140px;
}

/* creates larger curve */
.oval-speech-border:before {
    content:"";
    position:absolute;
    z-index:2;
    bottom:-40px;
    right:50%;
    width:50px;
    height:30px;
    border-style:solid;
    border-width:0 10px 10px 0;
    border-color:#f3961c;
    margin-right:-10px;
    background:transparent;
    /* css3 */
    -webkit-border-bottom-right-radius:80px 50px;
    -moz-border-radius-bottomright:80px 50px;
    border-bottom-right-radius:80px 50px;
    /* reduce the damage in FF3.0 */
    display:block;
}

/* creates smaller curve */
.oval-speech-border:after {
    content:"";
    position:absolute;
    z-index:2;
    bottom:-40px;
    right:50%;
    width:20px;
    height:31px;
    border-style:solid;
    border-width:0 10px 10px 0;
    border-color:#f3961c;
    margin-right:20px;
    background:transparent;
    /* css3 */
    -webkit-border-bottom-right-radius:40px 50px;
    -moz-border-radius-bottomright:40px 50px;
    border-bottom-right-radius:40px 50px;
    /* reduce the damage in FF3.0 */
    display:block;
}

/* creates a small circle to produce a rounded point where the two curves meet */
.oval-speech-border > :first-child:before {
    content:"";
    position:absolute;
    z-index:1;
    bottom:-40px;
    right:50%;
    width:10px;
    height:10px;
    margin-right:45px;
    background:#f3961c;
    /* css3 */
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}

/* creates a white rectangle to cover part of the oval border*/
.oval-speech-border > :first-child:after {
    content:"";
    position:absolute;
    z-index:1;
    bottom:-10px;
    right:50%;
    width:30px;
    height:15px;
    background:#fff;
}

/* ============================================================================================================================
== OVER THOUGHT BUBBLE, EMPTY, WITH BORDER (more CSS3)
** ============================================================================================================================ */

.oval-thought-border {
    position:relative;
    padding:70px 30px;
    margin:1em auto 80px;
    border:10px solid #c81e2b;
    text-align:center;
    color:#333;
    background:#fff;
    /* css3 */
    /*
    NOTES:
    -webkit-border-radius:240px 140px; // produces oval in safari 4 and chrome 4
    -webkit-border-radius:240px / 140px; // produces oval in chrome 4 (again!) but not supported in safari 4
    Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
    */
    -webkit-border-top-left-radius:240px 140px;
    -webkit-border-top-right-radius:240px 140px;
    -webkit-border-bottom-right-radius:240px 140px;
    -webkit-border-bottom-left-radius:240px 140px;
    -moz-border-radius:240px / 140px;
    border-radius:240px / 140px;
}

/* creates the larger circle */
.oval-thought-border:before {
    content:"";
    position:absolute;
    z-index:10;
    bottom:-40px;
    right:100px;
    width:50px;
    height:50px;
    border:10px solid #c81e2b;
    background:#fff;
    /* css3 */
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
    /* reduce the damage in FF3.0 */
    display:block;
}

/* creates the smaller circle */
.oval-thought-border:after {
    content:"";
    position:absolute;
    z-index:10;
    bottom:-60px;
    right:50px;
    width:25px;
    height:25px;
    border:10px solid #c81e2b;
    background:#fff;
    /* css3 */
    -webkit-border-radius:25px;
    -moz-border-radius:25px;
    border-radius:25px;
    /* reduce the damage in FF3.0 */
    display:block;
}
 
#result
{
background-color:#000;
margin-top:25px;
min-height:230px;
width:300px;
border:solid 10px #ffffff;
float:left;
margin-left:10px;

-moz-border-radius:9px;
-webkit-border-radius:9px;
overflow:hidden;


}
#video
{
background-color:#f2f2f2;



}
#no
{
padding:30px;
font-size:24px;
color:#fff;

}

#title
{
background-color:#fff;
font-size:16px;
text-align:left;
padding-bottom:8px;
height:30px;

}
#count
{
background-color:#fff;
text-align:left;
padding-top:8px;
}

/*cat*/
div.pagination {
    padding: 3px;
    margin: 3px;
}

div.pagination a {
    padding: 2px 5px 2px 5px;
    margin: 2px;
    border: 1px solid #dedfde;
   
    text-decoration: none; /* no underline */
    color: #ff0084;
}
div.pagination a:hover, div.pagination a:active {
    border: 1px solid #2b66a5;

    color: #000;
}
div.pagination span.current {
    padding: 2px 5px 2px 5px;
    margin: 2px;
        border: 1px solid #2b66a5;
       
        font-weight: bold;
        background-color: #2b66a5;
        color: #FFF;
    }
    div.pagination span.disabled {
        padding: 2px 5px 2px 5px;
        margin: 2px;
        border: 1px solid #EEE;
   
        color: #D3D3D3;
    }

.center {
text-align:center;
}

/*end pagination*/

.vblock{
width:610px;
float:left;
margin-left:15px;
height:125px;
}

.cvtitle{
font-size:13px;
width:570px;
font-weight:bold;
}

.bloc_ca{
width:610px;
float:left;
}

.cvdisc{
width:570px;
color:#666666;
margin-top:5px;
}

.cvviews{
width:300px;
font-size:10px;
color:#666666;
margin-top:10px;
}

.vcinfo{
font-size:13px;
margin-left:10px;
width:570px;
}

.bloc_ca img{
padding:3px;
border:1px solid #d3d3d3;
}

.bloc_video img{
padding:3px;
border:1px solid #d3d3d3;
}

.bloc_une img{
padding:3px;
border:1px solid #d3d3d3;
}

.fblikes{
width:620px;
margin-left:15px;
margin-top:10px;
line-height:35px;
}

.gplus{
width:100px;
float:left;
}

.vvviews{
float:right;
margin-bottom:10px;
font-size:16px;
font-weight:bold;
}

.vvdis{
float:left;
width:610px;
margin-left:15px;
margin-top:10px;
padding-bottom:5px;
}

.footer_cont{
padding-top:15px;
font-size:14px;
color:#FFFFFF;
width:980px;
margin:auto;
}

.footer_cont a{
color:#FFFFFF;
}

.footer_cont a:hover{
color: #999999;
}

.copyright{
float:left;
width:300px;
}

.footer_pages{
float:right;
width:500px;
text-align:right;
}

#admin_footer{
padding:5px;
color:#FFFFFF;
font-size:13px;
}

#admin_footer a{
color:#FFFFFF;
}

#admin_footer a:hover{
color: #999999;
}

/*pages*/

.controls ul{margin-right:0; padding-right:0px; width:400; float:right}
.controls li{background:#58A;padding:3px 6px;margin:6px;display:inline;border-radius:6px;-webkit-border-radius:6px;-moz-border-radius:6px;}
.controls a{text-decoration:none;color:#fff;font-weight:bold;font-size: .7em;}
.controls li a:hover{background:#2e6387}

h3.pages_head{width:300px; float:left;}
Avatar billede craver35 Nybegynder
22. juli 2012 - 15:32 #10
LUKKET
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Vi tilbyder markedets bedste kurser inden for webudvikling

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester