Media Queries laufen nicht?

  • Hallo Leute,


    ich hätte da mal ein Problem mit Media Queries, Grund vorhandenes Design in Responsive Design ändern. Verschwinden lassen bestimmter Elemente ab einer vorgegebenen Größe.Erster und Aktueller versuch die Breadcrumb verschwinden lassen.


    Ich hab schon gelernt das man das auf zwei Arten Lösen kann einmal im Vorhandenen CSS oder man verweist in der index.php auf eine eigene CSS.


    Problem ich bekomme das eine sowie das andere nicht zum Laufen. Suche im Forum und auch anderen Foren blieben bis jetzt erfolglos.


    @media (max-widht:800px){
    #breadcrumb {
    display: none;
    }


    }


    Breits Probiert im CSS:


    @media (max-widht:800px){#breadcrumb { display: none; } }


    @media only screen and (max-widht:800px){#breadcrumb { display: none; } }


    @media screen (max-widht:800px){#breadcrumb { display: none; } }


    @media screen and (max-widht:800px){#breadcrumb { display: none; } }


    @media screen and (max-widht:800px){#breadcrumb ul { display: none; } }


    In der index.php: Auch Probiert



    <link type="text/css" rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/mobil_template.css" media="only screen and (max-width: 800px)" />


    <link type="text/css" rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/mobil_template.css" media="only screen and (max-device-width: 800px)" />


    <link type="text/css" rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/mobil_template.css" media="screen (max-width: 800px)" />


    <link type="text/css" rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/mobil_template.css" media="screen (max-device-width: 800px)" />


    <link type="text/css" rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/mobil_template.css" media=" (max-width: 800px)" />


    Hab bestimmt noch ein dutzend andere Konstellationen probiert nie hab ich etwas zum Laufen gebracht.


    Hier der Link zur Seite: http://www.mobil.innova-solutions.de/index.php/de/


    Joomla 3.6.4 + Plugin : Attachments, Image gallery, JCE, Visforms


    Ich hoffe es hat noch einer eine Idee wo der Fehler liegen könnte.


    Danke im Voraus
    Gruß Styro