CSS没有样式化HTML - 我已经尝试了所有内容

时间:2017-07-10 02:28:06

标签: html css

最近我的网站(avocatheatre.com.au)出现了缓存问题,所以我从服务器上的public_html中删除了所有文件,然后重新上传了我的网站。 这解决了缓存问题,但也填补了一些CSS。

我们经营剧院,并有一个会话时间页面,它会运行一些代码,用于查看会话时间/日期以供查看,同时删除在一天结束后运行的会话。

它作为一串html代码嵌入到网站中(我运行Adobe Muse)

不知何故,我不确定为什么但CSS样式已停止为这部分代码工作,我已经尝试了任何我能想到的解决问题,包括

  1. 更改路径并将样式表复制到站点根
  2. 删除并重新上传该特定文件夹
  3. 检查htaac​​cess文件和&amp ;;确保UTF匹配
  4. 没有任何效果,我真的需要一些帮助

    请参阅下文,了解我在会话时间内嵌入网站的代码字符串

    <link rel="stylesheet" type="text/css" href=‘/session_times_/session_times.css’>
    
      <div style="min-width: 920px; padding-top: none !important; margin-top: 
    none !important; ">
        <?php
          $dateval = date('Ymd');
          include(dirname(__FILE__) . '/session_times_/sessions/' . $dateval . 
    '_sessions.html');
        ?>
      </div>
       <div style="min-width: 920px;">
        <div style=" min-width: 920px; clear: both; text-align: center; padding: 
    1em 0em .5em 0em;"><font color="white">Amazing films this week</font></div>
    <?php
      $dateval = date('Ymd');
      include(dirname(__FILE__) . '/session_times_/days/' . $dateval . '_days.html');
    ?>
      </div>
    

    以下是会话时间页面的直接链接(我在代码上方放置了一张图片,向下滚动) - http://avocabeachpicturetheatre.com.au/session-times.html

    这是CSS的直接链接 - http://avocabeachpicturetheatre.com.au/session_times_/session_times.css

2 个答案:

答案 0 :(得分:4)

这是你的问题:

<link rel="stylesheet" type="text/css" href=‘/session_times_/session_times.css’>

请注意,字符不是常规单引号。

这行代码导致404找不到错误:

enter image description here

将其更改为:

<link rel="stylesheet" type="text/css" href='/session_times_/session_times.css'>

你的风格也适用。

这是错误的代码,请注意最后一行:

<body class="always_vert_scroll">

  <div class="museBGSize clearfix" id="page"><!-- group -->
   <div class="clearfix grpelem" id="pu155964"><!-- group -->
    <div class="clip_frame clearfix grpelem" id="u155964"><!-- image -->
     <img class="position_content" id="u155964_img" src="images/hedge-31036x187.png?crc=4203777109" alt="" width="1035" height="186"/>
    </div>
    <div class="rounded-corners clearfix grpelem" id="u391521"><!-- column -->
     <div class="position_content" id="u391521_position_content">
      <!-- m_editable region-id="editable-static-tag-U166637-BP_infinity" template="session-times.html" data-type="html" data-ice-options="disableImageResize,link,txtStyleTarget" -->
      <div class="Event-Titles-Blue--H1 clearfix colelem" id="u166637-7" data-muse-uid="U166637" data-muse-type="txt_frame" data-IBE-flags="txtStyleSrc"><!-- content -->
       <h1 id="u166637-2"><span id="u166637">SESSION TIMES</span></h1>
       <h1 id="u166637-4">- CLICK NAMES FOR MORE DETAILS -</h1>
       <h1 id="u166637-5">&nbsp;</h1>
      </div>
      <!-- /m_editable -->
      <!-- m_editable region-id="editable-static-tag-U611873-BP_infinity" template="session-times.html" data-type="image" -->
      <div class="clip_frame colelem" id="u611873" data-muse-uid="U611873" data-muse-type="img_frame"><!-- image -->
       <img class="block" id="u611873_img" src="images/screen%20shot%202017-07-07%20at%20123714%20pm.jpg?crc=4169811894" alt="" width="458" height="792" data-muse-src="images/screen%20shot%202017-07-07%20at%20123714%20pm.jpg?crc=4169811894"/>
      </div>
      <!-- /m_editable -->
      <div class="colelem" id="u611526"><!-- custom html -->
       <link rel="stylesheet" type="text/css" href=‘/session_times_/session_times.css’>

答案 1 :(得分:0)

您的css样式文件中找不到404。仔细检查该css的外部文件路径。

  

http://avocabeachpicturetheatre.com.au/%E2%80%98/session_times_/session_times.css%E2%80%99   无法加载资源:服务器响应状态为404   (未找到)