如何删除wordpress链接中的下划线?

时间:2016-08-23 05:03:29

标签: wordpress wordpress-theming

我是wordpress主题开发的新手。我试过但是没有做对。如何从链接中删除下划线。

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url')?>">
<h1 calss="vijay">
    <?php wp_loginout('www.google.co.in')?>
</h1>

css文件。

h1{
    color:red;
    text-decoration: none;
}.

5 个答案:

答案 0 :(得分:2)

我刚刚发现WordPress在其部分代码中添加了LogLevel DEBUG3

box-shadow

答案 1 :(得分:1)

它不是具有下划线的h1,而是位于其下方的标签。所以,试试

let imageName = "smorgasbörd.jpg"
let path = "images/\(imageName)"
let decomposedPath = path.decomposedStringWithCanonicalMapping // Unicode Form D
let ref = FIRStorage.storage().reference().child(decomposedPath)
// use this ref and you'll always get the same objects

答案 2 :(得分:1)

超链接由锚标记{"Items":[1,2],"Name":"Ragnarok"} 管理,因此您必须使用in 你的CSS链接这个

&#13;
&#13;
<a>
&#13;
&#13;
&#13;

您可以参考W3School

答案 3 :(得分:0)

@extends('layouts.main')

复制此代码&amp;过去你的CSS文件

答案 4 :(得分:-2)

经过测试且值得信赖的最佳选择就是将此代码添加到自定义选项卡中。

a {  
   border-bottom: none !important;
}

错误消失了。