我在OSX上的Sublime Text 3上安装了苏打主题,我想知道主题的实际文件和文件夹在哪里,我可以查看主题文件并对其进行自己的编辑,同时我想调整一个主题中使用的图像很少.
在Git文档中,它说如果你要在Sublime上手动安装Soda,你将soda文件夹放在包目录中,虽然当我通过Control Package安装Soda时,我没有在包目录中看到Soda主题.
我正在尝试使用Font Awesome设置复选框的样式,复选框是从插件自动生成的,我使用wordpress我有一个关于JSFiddle中所有内容的模型
我的CSS似乎有些不对劲,但我无法弄清楚是什么.
<div id="sidebar-cards-archive">
<ul>
<li class="cat-item cat-item-12">
<label>
<input type="checkbox" name="ofcards-rarity[]" value="12">Common (223)</label>
</li>
<li class="cat-item cat-item-14">
<label>
<input type="checkbox" name="ofcards-rarity[]" value="14">Epic (40)</label>
</li>
<li class="cat-item cat-item-11">
<label>
<input type="checkbox" name="ofcards-rarity[]" value="11">Free (83)</label>
</li>
<li class="cat-item cat-item-15">
<label>
<input type="checkbox" name="ofcards-rarity[]" value="15">Legendary (36)</label>
</li>
<li class="cat-item cat-item-13">
<label>
<input type="checkbox" name="ofcards-rarity[]" value="13">Rare (84)</label>
</li>
</ul>
</div>
Run Code Online (Sandbox Code Playgroud)
这是CSS
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
#sidebar-cards-archive ul li {
list-style: none;
}
/*** custom checkboxes ***/
input[type=checkbox] {
display:none;
}
/* to hide …Run Code Online (Sandbox Code Playgroud) 我正在创建一个基于CSS的工具提示,它将在工具提示中包含大量内容,而不是在一个静态的地方,我想知道当你将鼠标悬停在链接上时,有一种简单的方法可以使它跟随光标.
以下是基于CSS的工具提示的示例
<div class="couponcode">First Link
<span class="coupontooltip">Content 1</span>
</div>
.couponcode:hover .coupontooltip {
display: block;
}
.coupontooltip {
display: none;
background: #C8C8C8;
margin-left: 28px;
padding: 10px;
position: absolute;
z-index: 1000;
width:200px;
height:100px;
}
Run Code Online (Sandbox Code Playgroud)
我一直在努力开发一个wordpress主题,我注意到很多Wordpress函数有两个版本,正常版本如the_post_thumbnail,而不是同一个版本,前面有get_.
<?php the_post_thumbnail(); ?>
<?php get_the_post_thumbnail(); ?>
Run Code Online (Sandbox Code Playgroud)
这不仅仅是针对the_post_thumbnail,因为我在很多不同的wordpress函数上看到了这一点,并且想知道两者之间的区别是什么,因为它们看起来完全相同,并且想确保我正确使用它们.谢谢.
css ×2
checkbox ×1
font-awesome ×1
html ×1
javascript ×1
jquery ×1
php ×1
soda ×1
sublimetext2 ×1
sublimetext3 ×1
wordpress ×1