Contao-Camp 2024
Ergebnis 1 bis 10 von 10

Thema: Nach Speichern lädt das Backend kein CSS-File

  1. #1
    Contao-Nutzer
    Registriert seit
    27.04.2010.
    Beiträge
    137

    Standard Nach Speichern lädt das Backend kein CSS-File

    Hallo Zusammen

    Ich habe seit längerer Zeit ein Problem mit meinem Backend & dies auf mehrerern Domänen mit unterschiedlichen Webhostern :/

    Wenn ich einen Artikel oder ein Modul abspeicher lädt es mir im Backend die Seite ohne irgendwelches CSS.
    Habe mal ein Bild angehängt wie es dann aussieht.
    contao-backend-blank.JPG

    Kennt jemand das Problem & wie kann ich das lösen?

    Wenn ich die Seite dann nochmals neulade - funktioniert wieder alles einwandfrei.

    Danke & Gruss
    Chris

  2. #2
    Contao-Urgestein
    Registriert seit
    30.01.2011.
    Ort
    Stuttgart
    Beiträge
    4.138

    Standard

    das kenn ich nur von Seiten wo das rewritten der domain in der htaccess bzw in den Einstellungen nicht richtig ist.

  3. #3
    Contao-Nutzer
    Registriert seit
    27.04.2010.
    Beiträge
    137

    Standard

    Zitat Zitat von magicsepp Beitrag anzeigen
    das kenn ich nur von Seiten wo das rewritten der domain in der htaccess bzw in den Einstellungen nicht richtig ist.

    In der .htaccess hab ich folgendes:
    Code:
    RewriteEngine On
    RewriteBase /
    <FilesMatch "\.(htm|php|js|css|htc|png|gif|jpe?g|ico|xml|csv|txt|swf|flv|eot|woff|svg|ttf|pdf|gz)$">
        RewriteEngine Off
    </FilesMatch>
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule .*\.html$ index.php [L]
    RewriteRule ^[a-z]{2}/$ index.php [L]
    RewriteRule ^([a-z]{2})$ $1/ [R=301,L]
    Im Backend hab ich "Urls umschreiben" aktiviert.

    Ist da was falsch?

  4. #4
    Contao-Urgestein
    Registriert seit
    30.01.2011.
    Ort
    Stuttgart
    Beiträge
    4.138

    Standard

    da fehlt ja allerhand aus der default...
    vorallem
    PHP-Code:
    # Change the RewriteBase if your Contao installation is in a subdirectoy and
      # the rewrite rules are not working properly. Usage examples:
      #
      #   RewriteBase /contao-2.11.0
      #   RewriteBase /path/to/contao
      #
      # Depending on your server, you might have to remove the line entirely. 
      
    RewriteBase 

  5. #5
    Contao-Nutzer
    Registriert seit
    27.04.2010.
    Beiträge
    137

    Standard

    Zitat Zitat von magicsepp Beitrag anzeigen
    da fehlt ja allerhand aus der default...
    vorallem
    PHP-Code:
    # Change the RewriteBase if your Contao installation is in a subdirectoy and
      # the rewrite rules are not working properly. Usage examples:
      #
      #   RewriteBase /contao-2.11.0
      #   RewriteBase /path/to/contao
      #
      # Depending on your server, you might have to remove the line entirely. 
      
    RewriteBase 
    Ne hab einfach nur die Zeilen reinkopiert, die nicht auskommentiert sind, ansonsten wäre das File ja einige Zeilen grösser.

    Soll ich das auskommentierte auch noch schreiben?

  6. #6
    Contao-Urgestein
    Registriert seit
    30.01.2011.
    Ort
    Stuttgart
    Beiträge
    4.138

    Standard

    nene, die Frage ist wo die Installation liegt und wie die Rewrite Base dazu ist...

  7. #7
    Contao-Nutzer
    Registriert seit
    27.04.2010.
    Beiträge
    137

    Standard

    Zitat Zitat von magicsepp Beitrag anzeigen
    nene, die Frage ist wo die Installation liegt und wie die Rewrite Base dazu ist...
    Also die Installation liegt im www/ des Webhostings - ohne Subfolder.

  8. #8
    Contao-Nutzer
    Registriert seit
    27.04.2010.
    Beiträge
    137

    Standard .htaccess

    Hab nun eine neue .htaccess Datei eingespielt

    PHP-Code:
    ##
    # Contao Open Source CMS
    # Copyright (C) 2005-2013 Leo Feyer
    #
    # Formerly known as TYPOlight Open Source CMS.
    #
    # This program is free software: you can redistribute it and/or
    # modify it under the terms of the GNU Lesser General Public
    # License as published by the Free Software Foundation, either
    # version 3 of the License, or (at your option) any later version.

    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    # Lesser General Public License for more details.

    # You should have received a copy of the GNU Lesser General Public
    # License along with this program. If not, please visit the Free
    # Software Foundation website at <http://www.gnu.org/licenses/>.
    #
    # PHP version 5
    # @copyright  Leo Feyer 2005-2013
    # @author     Leo Feyer <https://contao.org>
    # @license    LGPL
    ##

    ##
    # Disable ETags
    # @see http://developer.yahoo.com/performance/rules.html#etags
    ##
    FileETag None
    <IfModule mod_headers.c>
      
    Header unset ETag
    </IfModule>

    ##
    # Prevent access to the Contao template files
    ##
    <FilesMatch "\.(tpl|html5|xhtml)$">
      
    Order allow,deny
      Deny from all
    </FilesMatch>

    ##
    # Set the proper MIME types
    # @see https://github.com/h5bp/html5-boilerplate
    ##
    <IfModule mod_mime.c>
      
    # JavaScript
      
    AddType application/javascript              js jsonp
      AddType application
    /json                    json
      
    # Audio
      
    AddType audio/ogg                           oga ogg
      AddType audio
    /mp4                           m4a f4a f4b
      
    # Video
      
    AddType video/ogg                           ogv
      AddType video
    /mp4                           mp4 m4v f4v f4p 
      AddType video
    /webm                          webm
      AddType video
    /x-flv                         flv
      
    # SVG
      
    AddType image/svg+xml                       svg svgz
      AddEncoding gzip                            svgz
      
    # Webfonts
      
    AddType application/vnd.ms-fontobject       eot
      AddType application
    /x-font-ttf              ttf ttc
      AddType font
    /opentype                       otf
      AddType application
    /x-font-woff             woff
      
    # Assorted types
      
    AddType image/x-icon                        ico
      AddType image
    /webp                          webp
      AddType text
    /cache-manifest                 appcache manifest
      AddType text
    /x-component                    htc
      AddType application
    /xml                     rss atom xml rdf
      AddType application
    /x-web-app-manifest+json webapp
      AddType text
    /x-vcard                        vcf
      AddType application
    /x-shockwave-flash       swf
    </IfModule>

    ##
    # Gzip compression
    # @see https://github.com/h5bp/html5-boilerplate
    ##
    <IfModule mod_deflate.c>
      
    # Current Apache versions (>= 2.2)
      
    <IfModule filter_module>
        
    FilterDeclare   COMPRESS
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $text/html
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $text/css
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $text/plain
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $text/xml
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $text/x-component
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $application/javascript
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $application/json
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $application/xml
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $application/xhtml+xml
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $application/rss+xml
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $application/atom+xml
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $application/vnd.ms-fontobject
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $image/svg+xml
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $image/x-icon
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $application/x-font-ttf
        FilterProvider  COMPRESS  DEFLATE resp
    =Content-Type $font/opentype
        FilterChain     COMPRESS
        FilterProtocol  COMPRESS  DEFLATE change
    =yes;byteranges=no
      
    </IfModule>
      
    # Legacy Apache versions
      
    <IfModule !mod_filter.c>
        
    AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
        AddOutputFilterByType DEFLATE application
    /javascript
        AddOutputFilterByType DEFLATE text
    /xml application/xml text/x-component
        AddOutputFilterByType DEFLATE application
    /xhtml+xml application/rss+xml application/atom+xml
        AddOutputFilterByType DEFLATE image
    /x-icon image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype
      
    </IfModule>
    </
    IfModule>

    ##
    # Expires headers (for better cache control)
    # @see https://github.com/h5bp/html5-boilerplate
    ##
    <IfModule mod_expires.c>
      
    ExpiresActive on
      ExpiresByType text
    /cache-manifest           "access plus 0 seconds"
      
    ExpiresByType text/html                     "access plus 0 seconds"
      
    # Data
      
    ExpiresByType text/xml                      "access plus 0 seconds"
      
    ExpiresByType application/xml               "access plus 0 seconds"
      
    ExpiresByType application/json              "access plus 0 seconds"
      
    # Feed
      
    ExpiresByType application/rss+xml           "access plus 1 hour"
      
    ExpiresByType application/atom+xml          "access plus 1 hour"
      
    # Media: images, video, audio
      
    ExpiresByType image/gif                     "access plus 1 month"
      
    ExpiresByType image/png                     "access plus 1 month"
      
    ExpiresByType image/jpg                     "access plus 1 month"
      
    ExpiresByType image/jpeg                    "access plus 1 month"
      
    ExpiresByType image/x-icon                  "access plus 1 month"
      
    ExpiresByType video/ogg                     "access plus 1 month"
      
    ExpiresByType audio/ogg                     "access plus 1 month"
      
    ExpiresByType video/mp4                     "access plus 1 month"
      
    ExpiresByType video/webm                    "access plus 1 month"
      
    # HTC files  (css3pie)
      
    ExpiresByType text/x-component              "access plus 1 month"
      
    # Webfonts
      
    ExpiresByType application/x-font-ttf        "access plus 1 month"
      
    ExpiresByType font/opentype                 "access plus 1 month"
      
    ExpiresByType application/x-font-woff       "access plus 1 month"
      
    ExpiresByType image/svg+xml                 "access plus 1 month"
      
    ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
      
    # CSS and JavaScript
      
    ExpiresByType text/css                      "access plus 1 year"
      
    ExpiresByType application/javascript        "access plus 1 year"
    </IfModule>

    ##
    # Add a Vary Accept-Encoding header for the compressed resources. If you
    # modify the file types above, make sure to change them here accordingly.
    # @see http://developer.yahoo.com/performance/rules.html#gzip
    ##
    <IfModule mod_headers.c>
      <
    FilesMatch "\.(js|css|xml|gz)$">
        
    Header append Vary Accept-Encoding
      
    </FilesMatch>
    </
    IfModule>

    ##
    # URL rewriting
    ##
    <IfModule mod_rewrite.c>
      
    RewriteEngine On

      
    ##
      # Change the RewriteBase if your Contao installation is in a subdirectoy and
      # the rewrite rules are not working properly. Usage examples:
      #
      #   RewriteBase /contao-2.11.0
      #   RewriteBase /path/to/contao
      #
      # Depending on your server, you might have to remove the line entirely. 
      ##
      
    RewriteBase /

      
    ##
      # Uncomment the following lines and replace "domain.com" with your domain
      # name to redirect requests without "www" to the correct domain. 
      ##
      #RewriteCond %{HTTP_HOST} ^domain\.com [NC]
      #RewriteRule (.*) http://www.domain.com/$1 [R=301,L]

      ##
      # If you cannot use mod_deflate, uncomment the following lines to load a
      # compressed .gz version of the aggregated Contao JavaScript and CSS files.
      ##
      #AddEncoding gzip .gz
      #<FilesMatch "\.js\.gz$">
      #  AddType "text/javascript" .gz
      #</FilesMatch>
      #<FilesMatch "\.css\.gz$">
      #  AddType "text/css" .gz
      #</FilesMatch>
      #RewriteCond %{HTTP:Accept-encoding} gzip
      #RewriteCond %{REQUEST_FILENAME} \.(js|css)$
      #RewriteCond %{REQUEST_FILENAME}.gz -f
      #RewriteRule ^(.*)$ $1.gz [QSA,L]

      ##
      # Do not rewrite requests for static files or folders such as style sheets,
      # images, movies or text documents. Do not add the URL suffix here!
      ##
      
    <FilesMatch "\.(htm|php|js|css|htc|png|gif|jpe?g|ico|xml|csv|txt|swf|flv|eot|woff|svg|ttf|pdf|gz)$">
        
    RewriteEngine Off
      
    </FilesMatch>

      
    ##
      # By default, Contao adds ".html" to the generated URLs to simulate static
      # HTML documents. If you change the URL suffix in the back end settings, make
      # sure to change it here accordingly!
      #
      #   RewriteRule .*\.html$ index.php [L]   # URL suffix .html
      #   RewriteRule .*\.txt$ index.php [L]    # URL suffix .txt
      #   RewriteRule .*\.json$ index.php [L]   # URL suffix .json
      #
      # If you do not want to use an URL suffix at all, you have to add a second
      # line to prevent URLs that point to folders from being rewritten (see #4031).
      #
      #   RewriteCond %{REQUEST_FILENAME} !-d
      #
      # If you are using mod_cache, it is recommended to use the RewriteRule below,
      # which adds the query string to the internal URL:
      # 
      #   RewriteRule (.*\.html)$ index.php/$1 [L]
      #
      # Note that not all environments support mod_rewrite and mod_cache.
      ##
      
    RewriteCond %{REQUEST_FILENAME} !-f
      RewriteRule 
    .*\.htmlindex.php [L]

      
    ##
      # The following rules are required if you want to pass the language as first
      # URL parameter (added in Contao 2.11). The first rule rewrites an empty URL
      # to the front end controller, the second one adds a missing trailing slash.
      ##
      
    RewriteRule ^[a-z]{2}/$ index.php [L]
      
    RewriteRule ^([a-z]{2})$ $1/ [R=301,L]

    </
    IfModule
    Geändert von frick.christian (09.04.2013 um 19:10 Uhr)

  9. #9
    Contao-Nutzer
    Registriert seit
    27.04.2010.
    Beiträge
    137

    Standard

    Nochmal kurz eine Info Sorry...

    Das Problem trifft bei den Newslettern ein, wenn ich einen Newsletter bearbeite & dann auf "Speichern und schliessen" klicke - dann lädt die Seite kein CSS-File.

    Die URLs sind wie folgt:
    Newsletter-Übersicht: http://www.domain.ch/contao/main.php...ewsletter&id=2 -> Lädt CSS
    Newseltter-Bearbeiten: http://www.domain.ch/contao/main.php...&act=edit&id=3
    Nach dem Speichern: http://www.domain.ch/contao/main.php...ewsletter&id=2 -> Lädt kein CSS
    Geändert von frick.christian (09.04.2013 um 19:29 Uhr)

  10. #10
    Contao-Nutzer
    Registriert seit
    27.04.2010.
    Beiträge
    137

    Standard

    Also nochmal neue Infos...

    Hab jetzt einbisschen getestet, wenn der Inhalt des Newsletter nur reiner "Text" ist - funktioniert es einwandfrei.
    Wenn ich aber meinen HTML-Newsletter einfüge, der aus vielen Tabellen besteht - scheint es nicht zu funktionieren.

    Hier wäre der ganze Newsletter:
    PHP-Code:
    <table style="width: 100%; background: #fff;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr style="background: #fff;">
    <
    td style="margin: 0px; background: #fff;" bgcolor="#fff" width="100%">
    <
    table style="width: 650px;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr>
    <
    td valign="top"><!-- ***************************************  Beginn Kopfzeile *************************************** -->
    <
    table class="displaynone" style="margin-top: 18px; margin-bottom: 21px; font-size: 11px; width: 650px;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr>
    <
    td style="font-family: Arial, sans-serif;" align="right" valign="top"><a style="color: #909090; text-decoration: none;" href="newsletter-reader/items/newsletter-1.html">Wird die E-Mail nicht korrekt dargestellt?</a></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <
    table style="background-color: #ffffff; width: 650px; border-top: 1px solid #cdcfd2; border-left: 1px solid #cdcfd2; border-right: 1px solid #cdcfd2;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr>
    <
    td height="30">[nbsp]</td>
    </
    tr>
    <
    tr>
    <
    td width="25">[nbsp]</td>
    <
    td><a href="http://www.domain.ch/"><img style="display: block;" title="domain" src="tl_files/bilder/newsletter/logo_domain.png" alt="domain" width="110" height="40" border="0" /></a></td>
    <
    td style="padding-right: 20px; font-size: 18px; color: #202020; line-height: 1.3em; font-family: Arial, sans-serif;" align="right" width="385">Newsletter April 2013<br /> <span style="font-size: 13px; color: #72797f;">Neuheiten im Bereich Computing [&amp;] Powersupplies</span></td>
    <
    td width="20">[nbsp]</td>
    </
    tr>
    <
    tr>
    <
    td height="30">[nbsp]</td>
    </
    tr>
    </
    tbody>
    </
    table>
    <
    table style="background-color: #ffffff; margin-bottom: 20px; width: 650px;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr>
    <
    td><img style="display: block;" src="tl_files/bilder/newsletter/newsletter_header.jpg" alt="" width="650" height="250" border="0" /></td>
    </
    tr>
    <
    tr>
    <
    td><img style="display: block;" src="tl_files/bilder/newsletter/shadow1.gif" alt="" width="650" height="2" border="0" /></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <!-- ***************************************  
    Ende Kopfzeile *************************************** -->
    <
    table style="border-spacing: 0px;">
    <
    tbody>
    <
    tr>
    <
    td><!-- *************************************** Beginn Bild Links (von hier kopieren) *************************************** -->
    <
    table style="background-color: #ffffff; font-size: 12px; color: #7c7c7c; border-top-width: 1px; border-top-style: solid; border-top-color: #cdcfd2; border-left-width: 1px; border-left-style: solid; border-left-color: #cdcfd2; border-right-width: 1px; border-right-style: solid; border-right-color: #cdcfd2; width: 470px;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr>
    <
    td valign="top"><img style="display: block;" src="tl_files/bilder/newsletter/AIMB-273_small_2.jpg" alt="" width="157" height="215" border="0" /></td>
    <
    td valign="top">
    <
    table style="width: 330px;" border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td height="20">[nbsp]</td>
    </
    tr>
    <
    tr>
    <
    td valign="top">
    <
    table style="width: 330px;" border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td width="10">[nbsp]</td>
    <
    td valign="top">
    <
    table border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td style="font-size: 16px; font-family: Trebuchet MS, sans-serif;" valign="top"><span style="background-color: #ffffff; padding-right: 10px;"><a style="color: #0098d4; text-decoration: none;" href="#">AIMB-273 ausgerüstet mit iManager 2.0</a></span></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-top: 15px; font-size: 12px; color: #7c7c7c; line-height: 1.6em; font-family: Trebuchet MS, sans-serif;" valign="top">Lorem ipsum dolor sit ametconsetetur sadipscing elitrsed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam eratsed diam voluptuaAt vero eos et accusam et justo duo dolores.</td>
    </
    tr>
    <
    tr>
    <
    td style="padding-top: 13px; padding-bottom: 15px;" valign="top"><a style="float: left;" href="embedded_computing_systems.html"><img style="display: block;" src="tl_files/bilder/newsletter/more.png" alt="" width="119" height="30" border="0" /></a></td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    <
    td width="10">[nbsp]</td>
    </
    tr>
    </
    tbody>
    </
    table>
    <
    table style="margin-bottom: 20px; width: 490px;" border="0" cellspacing="0" cellpadding="0">
    <
    tbody>
    <
    tr>
    <
    td><img style="display: block;" src="tl_files/bilder/newsletter/shadow1.gif" alt="" width="492" height="2" border="0" /></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <!-- *************************************** 
    Ende Bild Links (bis hier kopieren) *************************************** --> <!-- *************************************** Beginn Bild Rechts (von hier kopieren) *************************************** -->
    <
    table style="background-color: #ffffff; font-size: 12px; color: #7c7c7c; border-top-width: 1px; border-top-style: solid; border-top-color: #cdcfd2; border-left-width: 1px; border-left-style: solid; border-left-color: #cdcfd2; border-right-width: 1px; border-right-style: solid; border-right-color: #cdcfd2; width: 470px;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr>
    <
    td valign="top">
    <
    table style="width: 330px;" border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td height="20">[nbsp]</td>
    </
    tr>
    <
    tr>
    <
    td valign="top">
    <
    table style="width: 330px;" border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td width="10">[nbsp]</td>
    <
    td valign="top">
    <
    table border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td style="font-size: 16px; font-family: Trebuchet MS, sans-serif;" valign="top"><span style="background-color: #ffffff; padding-right: 10px;"><a style="color: #0098d4; text-decoration: none;" href="#">AIMB-273 ausgerüstet mit iManager 2.0</a></span></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-top: 15px; font-size: 12px; color: #7c7c7c; line-height: 1.6em; font-family: Trebuchet MS, sans-serif;" valign="top">Lorem ipsum dolor sit ametconsetetur sadipscing elitrsed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam eratsed diam voluptuaAt vero eos et accusam et justo duo dolores.</td>
    </
    tr>
    <
    tr>
    <
    td style="padding-top: 13px; padding-bottom: 15px;" valign="top"><a style="float: left;" href="embedded_computing_systems.html"><img style="display: block;" src="tl_files/bilder/newsletter/more.png" alt="" width="119" height="30" border="0" /></a></td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    <
    td width="10">[nbsp]</td>
    <
    td valign="top"><img style="display: block;" src="tl_files/bilder/newsletter/AIMB-273_small_2.jpg" alt="" width="157" height="215" border="0" /></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <
    table style="margin-bottom: 20px; width: 490px;" border="0" cellspacing="0" cellpadding="0">
    <
    tbody>
    <
    tr>
    <
    td><img style="display: block;" src="tl_files/bilder/newsletter/shadow1.gif" alt="" width="492" height="2" border="0" /></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <!-- *************************************** 
    Ende Bild Rechts (bis hier kopieren) *************************************** --> <!-- *************************************** Beginn Bild Links (von hier kopieren) *************************************** -->
    <
    table style="background-color: #ffffff; font-size: 12px; color: #7c7c7c; border-top-width: 1px; border-top-style: solid; border-top-color: #cdcfd2; border-left-width: 1px; border-left-style: solid; border-left-color: #cdcfd2; border-right-width: 1px; border-right-style: solid; border-right-color: #cdcfd2; width: 470px;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr>
    <
    td valign="top"><img style="display: block;" src="tl_files/bilder/newsletter/AIMB-273_small_2.jpg" alt="" width="157" height="215" border="0" /></td>
    <
    td valign="top">
    <
    table style="width: 330px;" border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td height="20">[nbsp]</td>
    </
    tr>
    <
    tr>
    <
    td valign="top">
    <
    table style="width: 330px;" border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td width="10">[nbsp]</td>
    <
    td valign="top">
    <
    table border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td style="font-size: 16px; font-family: Trebuchet MS, sans-serif;" valign="top"><span style="background-color: #ffffff; padding-right: 10px;"><a style="color: #0098d4; text-decoration: none;" href="#">AIMB-273 ausgerüstet mit iManager 2.0</a></span></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-top: 15px; font-size: 12px; color: #7c7c7c; line-height: 1.6em; font-family: Trebuchet MS, sans-serif;" valign="top">Lorem ipsum dolor sit ametconsetetur sadipscing elitrsed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam eratsed diam voluptuaAt vero eos et accusam et justo duo dolores.</td>
    </
    tr>
    <
    tr>
    <
    td style="padding-top: 13px; padding-bottom: 15px;" valign="top"><a style="float: left;" href="embedded_computing_systems.html"><img style="display: block;" src="tl_files/bilder/newsletter/more.png" alt="" width="119" height="30" border="0" /></a></td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    <
    td width="10">[nbsp]</td>
    </
    tr>
    </
    tbody>
    </
    table>
    <
    table style="margin-bottom: 20px; width: 490px;" border="0" cellspacing="0" cellpadding="0">
    <
    tbody>
    <
    tr>
    <
    td><img style="display: block;" src="tl_files/bilder/newsletter/shadow1.gif" alt="" width="492" height="2" border="0" /></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <!-- *************************************** 
    Ende Bild Links (bis hier kopieren) *************************************** --> <!-- *************************************** Beginn Bild Rechts (von hier kopieren) *************************************** -->
    <
    table style="background-color: #ffffff; font-size: 12px; color: #7c7c7c; border-top-width: 1px; border-top-style: solid; border-top-color: #cdcfd2; border-left-width: 1px; border-left-style: solid; border-left-color: #cdcfd2; border-right-width: 1px; border-right-style: solid; border-right-color: #cdcfd2; width: 470px;" border="0" cellspacing="0" cellpadding="0" align="center">
    <
    tbody>
    <
    tr>
    <
    td valign="top">
    <
    table style="width: 330px;" border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td height="20">[nbsp]</td>
    </
    tr>
    <
    tr>
    <
    td valign="top">
    <
    table style="width: 330px;" border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td width="10">[nbsp]</td>
    <
    td valign="top">
    <
    table border="0" cellspacing="0" cellpadding="0" align="left">
    <
    tbody>
    <
    tr>
    <
    td style="font-size: 16px; font-family: Trebuchet MS, sans-serif;" valign="top"><span style="background-color: #ffffff; padding-right: 10px;"><a style="color: #0098d4; text-decoration: none;" href="#">AIMB-273 ausgerüstet mit iManager 2.0</a></span></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-top: 15px; font-size: 12px; color: #7c7c7c; line-height: 1.6em; font-family: Trebuchet MS, sans-serif;" valign="top">Lorem ipsum dolor sit ametconsetetur sadipscing elitrsed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam eratsed diam voluptuaAt vero eos et accusam et justo duo dolores.</td>
    </
    tr>
    <
    tr>
    <
    td style="padding-top: 13px; padding-bottom: 15px;" valign="top"><a style="float: left;" href="embedded_computing_systems.html"><img style="display: block;" src="tl_files/bilder/newsletter/more.png" alt="" width="119" height="30" border="0" /></a></td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    <
    td width="10">[nbsp]</td>
    <
    td valign="top"><img style="display: block;" src="tl_files/bilder/newsletter/AIMB-273_small_2.jpg" alt="" width="157" height="215" border="0" /></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <!-- *************************************** 
    Ende Bild Rechts (bis hier kopieren) *************************************** --></td>
    <!-- *************************************** 
    Beginn Infospalte *************************************** -->
    <
    td width="10">[nbsp]</td>
    <
    td style="padding: 5px; padding-top: 10px; font-size: 11px; color: #72797f; line-height: 1.6em; font-family: Arial, sans-serif; vertical-align: top; border: 1px solid #cdcfd2;"><b>domain AG</b><br /> Joweid Zentrum 1<br /> 8630 Rüti ZH<br /> +41 55 250 66 00<br /> +41 55 250 66 66<br /> <a style="color: #72797f;" href="http://www.domain.ch/">www.domain.ch</a><br /> <a style="color: #72797f;" href="mailto: info@domain.ch">info@domain.ch</a><br /><br /><br /> <b>Vertrieb Deutschland Österreich</b><br /> Pforzheim <br />T[nbsp]+49 7236 981 227<br /> <a style="color: #72797f;" href="mailto: info@domain.ch">info@domain.ch</a><br /><br /><br /> <b>Produkte</b><br />
    <
    table style="border-spacing: 0; text-align: center;">
    <
    tbody>
    <
    tr>
    <
    td style="border-top: 1px solid #cdcfd2;"><img style="padding-top: 10px;" src="tl_files/bilder/newsletter/icon_embedded.jpg" alt="" width="40" height="40" border="0" /></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-bottom: 10px; border-bottom: 1px solid #cdcfd2;"><a style="color: #72797f; font-size: 11px;" href="embedded_computing_systems.html">Embedded Computing Systems</a></td>
    </
    tr>
    <
    tr>
    <
    td><img style="padding-top: 10px;" src="tl_files/bilder/newsletter/icon_power.jpg" alt="" width="40" height="40" border="0" /></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-bottom: 10px; border-bottom: 1px solid #cdcfd2;"><a style="color: #72797f; font-size: 11px;" href="power_supplies.html">Power Supplies</a></td>
    </
    tr>
    <
    tr>
    <
    td><img style="padding-top: 10px;" src="tl_files/bilder/newsletter/icon_electronic.jpg" alt="" width="40" height="40" border="0" /></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-bottom: 10px; border-bottom: 1px solid #cdcfd2;"><a style="color: #72797f; font-size: 11px;" href="electronic_packaging.html">Electronic Packaging</a></td>
    </
    tr>
    <
    tr>
    <
    td><img style="padding-top: 10px;" src="tl_files/bilder/newsletter/icon_engineering.jpg" alt="" width="40" height="40" border="0" /></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-bottom: 10px; border-bottom: 1px solid #cdcfd2;"><a style="color: #72797f; font-size: 11px;" href="electronic_engineering.html">Electronic Engineering</a></td>
    </
    tr>
    <
    tr>
    <
    td><img style="padding-top: 10px;" src="tl_files/bilder/newsletter/icon_assembling.jpg" alt="" width="40" height="40" border="0" /></td>
    </
    tr>
    <
    tr>
    <
    td style="padding-bottom: 10px; border-bottom: 1px solid #cdcfd2;"><a style="color: #72797f; font-size: 11px;" href="assembling-testing.html">Assembling [&amp;] Testing</a></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <
    br /><br /> <a style="color: #72797f;" href="newsletter-abmeldung.html?email=##email##">Newsletter abmelden</a><br /> <a style="color: #72797f;" href="mailto:?subject=Empfehlung des domain Newsletter[&amp;]body=Link zur Onlineversion des Newsletter http://www.domain.ch/newsletter.html">Newsletter empfehlen</a></td>
    </
    tr>
    </
    tbody>
    </
    table>
    <
    table style="margin-bottom: 20px; width: 492px;" border="0" cellspacing="0" cellpadding="0">
    <
    tbody>
    <
    tr>
    <
    td><img style="display: block; margin-left: 1px;" src="tl_files/bilder/newsletter/shadow1.gif" alt="" width="492" height="2" border="0" /></td>
    </
    tr>
    </
    tbody>
    </
    table>
    </
    td>
    <!-- *************************************** 
    Ende Infospalte *************************************** --></tr>
    </
    tbody>
    </
    table>
    </
    td>
    </
    tr>
    </
    tbody>
    </
    table
    An was könnte das Problem liegen?
    Der HTML-Code ist soweit korrekt
    Geändert von frick.christian (09.04.2013 um 20:35 Uhr)

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

Lesezeichen

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •