2012-03-29 5 views
0

Hey das ist extrem frustrierend und ich kann es nicht herausfinden. Ich bin ein Neuling HTML/CSS-Coder. Dieses Problem ist speziell mit den Links und Text-Styling. Es scheint korrekt im Theme Preview Editor ... aber wenn ich meinen Blog direkt von seiner URL öffne ist es nicht das selbe hier ist was ich habe in Bezug auf den Problemcode.tumblr Vorschau macht Text Styling anders als die tatsächliche Website

Bitte helfen Sie dies macht mich verrückt, ist die URL http://www.ensu3.tumblr.com

die Meta für kundenspezifische Optionen

`

<style type="text/css"> 

body { 
    background: {color:Background} url('{image:Background Image}') 
{text:BackgroundProperties}; 
    } 
.wrapper { 
    width: 960px; 
    margin: 0px auto; 
    padding-top: 25px; 
    background-color: white; 
    } 
a:link, a:visited { 
    text-decoration: none; 
    } 
a:hover, a:active { 
    text-decoration: none; 
    } 
.header { 
    width: 100%; 
    padding: 5px 0px 5px 0px; 
    margin: 0px; 
    background-color: gray; 
    } 
#logo img { 
    margin: 0px; 
    padding: 0px; 
    text-align: center; 
    } 
#title { 
    margin: 0px; 
    padding: 0px; 
    text-align: center; 
    font-family: {font:Title}; 
    font-size: {text:HeaderSize}; 
    color: {color:Title}; 
    } 
#title h1 { 
    margin:0px; 
    padding:0px; 
    text-transform: uppercase; 
    color: black; 
    } 
#title a:link, #title a:visited { 
    text-decoration: none; 
    } 
#title a:hover, #title a:active { 
    color: {color:LinksHover}; 
    } 
#title a { 
    transition: color .7s; 
    -moz-transition: color .7s; 
    -webkit-transition: color .7s; 
    -o-transition: color .7s; 
    } 
#nav { 
    margin: 0px; 
    padding: 0px; 
    background-color: blue; 
    color: {color:Links}; 
    font-family: {font:Links}; 
    letter-spacing: 1.5px; 
    margin: 0px; 
    padding: 15px 0px 15px 0px; 
    word-spacing: 10px; 
    text-align: center; 
    } 
#nav ul { 
    list-style-type: none; 
    margin: 0px; 
    padding: 0px; 
    } 
#nav li { 
    display: inline; 
    text-transform: uppercase; 
    margin: 0px auto; 
    padding: 0px; 
    } 

<div class="header"> 
    {block:IfLogoImage} 
    <div class="header" id="logo"><a href="/#"><img src="{image:Logo}" /></a></div> 
    {/block:IfLogoImage} 
    {block:IfNotLogoImage} 
      <div class="header" id="title"><h1><a href="/#">{Title}</a></h1> 
    {/block:IfNotLogoImage} 
</div> 
    <div class="header"> 
     <ul id="nav"> 
      {block:AskEnabled} 
       <li><a href="{/ask}" alt="{AskLabel}">{AskLabel}</a></li>   
      {/block:AskEnabled} 
      {block:SubmissionsEnabled} 
         <li><a href="{/submit}" alt="Submit">{SubmitLabel}</a></li> 
      {/block:SubmissionsEnabled} 
      {block:HasPages} 
      {block:Pages} 
         <li><a href="{URL}">{Label}</a></li> 
      {/block:Pages} 
      {/block:HasPages} 
         <li><a href="test link">TestLink</a></li> 
         <li><a href="test link">TextLink2</a></li> 
     </ul> 
    </div>` 

Antwort

0

Haben Sie daran gedacht, sicher zu gehen?

Es kann auch eine Weile dauern, bis Änderungen angezeigt werden, da Tumblr Seitenvorlagen sehr aggressiv zwischenspeichert.

+0

Ja ich speichere es jedes Mal und es zeigt immer noch nicht das gleiche, ich werde es im Editor machen und dann die statische Datei auf tumblr hochladen, um zu sehen, ob das funktioniert ... Daumen drücken! –