我想添加CSS样式
[self.tabBarController setSelectedIndex:2];
对此:
right: 10px
top: 10px
如何连接这两个?我把它放在哪里:
<?php echo DISPLAY_ULTIMATE_PLUS(); ?>
...
因为它是Wordpress并且它说&#34;将代码放在主题代码中&#34;
由于
答案 0 :(得分:1)
您需要将代码放在主题文件中的适当位置。
由于你想对它应用一些样式,你可以将它包装在一个div中,并为其分配一个类。
<div class="social_buttons">
<?php echo DISPLAY_ULTIMATE_PLUS(); ?>
</div>
然后将CSS添加到样式表中,通常在主题文件夹中找到并命名为“style.css”。
.social_buttons{
right: 10px
top: 10px
}
答案 1 :(得分:0)
<style>
.notificacion {
background: red;
border-radius: 0.8em;
-moz-border-radius: 0.8em;
-webkit-border-radius: 0.8em;
color: #ffffff;
display: inline-block;
font-weight: bold;
line-height: 1.6em;
margin-right: 15px;
text-align: center;
width: 1.6em;
}
</style>
<?php
$a=3;
echo '<div class="notificacion">', $a,'</div>';?>
告诉我是否有效:D