去除背景图标 css dedecms

环境:win7 apmserv5.2.6 dedecms5.7sp1 GBK版本

  

         师兄问,简体中文和English前的图标用国旗是否合适?那我就把它去掉吧。

       去除背景图标 css dedecms_第1张图片

           我先在主页模板index.htm里面,找关于图标的内容,因为看了感觉我要找的内容应该和网页标题什么相关的(不了解的参看A5官方dedecms织梦建站培训),找到了以下内容

            {dede:include filename="headn.htm"/}

           所以还得在headn.htm中找关于图标的内容,找到下面这样的内容

           <a class="la_c" href="http://www.hrs-cas.com">简体中文</a> <a class="la_e" href="http://www.hrs-cas.com/esite/">English</a>

           那我就猜想这个class=“la_c”到底是什么意思呢,网上查询了一下,说是样式表css的内容,好了,那就找主页的样式表吧。

          猜想主页中应该包含一些它要加载样式表的信息,还是到主页index.htm中看看吧,找到了如下内容:

         <head>
           <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
           <link rel="stylesheet" type="text/css" href="css/reset.css" />
           <link rel="stylesheet" type="text/css" href="css/index.css" />

          猜想主页的样式表名称应该就是index.css,那就到index.css中再看看吧,在index.css中查询"la_c", 找到了以下信息:

         #header .site_tip .la_c { padding-left:20px; margin-left:15px;  background:url(../images/china.gif) no-repeat left 2px; color:#464646; text-decoration:none; }

           #header .site_tip .la_e { padding-left:20px; margin-left:10px; background:url(../images/english.gif) no-repeat left 2px; color:#464646; text-decoration:none; }

           哈哈,看来我想要找的发现了,“background:url(../images/china.gif)”和“background:url(../images/english.gif)”,删除这两个关于背景的描述,更新主页,成功!

         

      

 

你可能感兴趣的:(c,css,url,Class,include,stylesheet)