gpt4 book ai didi

css - 加载到页面中的 wordpress css 覆盖主 css

转载 作者:太空宇宙 更新时间:2023-11-04 14:33:26 25 4
gpt4 key购买 nike

我将我的 css 和 html 设置为在我网站的右侧栏上居中对齐。但是,当我加载博客时,它还会加载与主题相关的 css它正在将我的图像移动到右侧边栏的左侧。

现场观看:http://www.edvizenor.com/?p=blog&id=102

我怎样才能修复图像,使它们在我执行时不在左侧对齐加载博客内容。

你可以看到如果你点击上面的其他链接看到图像然后到中心再次。

我的 css 从这样的链接加载:

<link href="css/main.css" rel="stylesheet" type="text/css" />

我的 Wordpress 内容从下面的代码加载。但我不知道它如何在主题中包含自己的 CSS。我没有办法显示这段代码,因为我不知道它是如何加载的。我只能展示我是如何加载 wordpress 内容的它是这样完成的:

<?
if(!$_GET[id])
{


$posts = get_posts();

foreach ($posts as $post) : start_wp(); ?>

<br />
<table width="100%" cellpadding="0" cellspacing="0" id="blogHolder" name="blogHolder" >
<tr>
<td width="21%" rowspan="2" align="center" valign="middle">


<div class="blogImage"><a href="http://www.EdVizenor.com/?p=blogContent&id=<? echo get_the_ID(); ?>"><? echo get_the_post_thumbnail($recent["ID"], array(133,133) ); ?></a></div>

<div class="blogDate">
<table width="217" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="76"><? echo the_date();?></td>

</tr>
</table>


</div>



<img src="http://www.TimStaples.com/images/blogImageBox.png" width="177" height="177" /></td>
<td width="79%" height="27" valign="middle" class="blogTitle"><? echo the_title(); ?></td>
</tr>
<tr>
<td valign="top" background="http://www.TimStaples.com/images/blogBG2.png"><div class="blogContent">
<? echo the_excerpt(); ?>

<div class="readMore"><a href="http://www.EdVizenor.com/?p=blogContent&id=<? echo get_the_ID(); ?>"><img src="http://www.TimStaples.com/images/readMore.png" width="142" height="32" alt="Read More" /></a> </div>

</div></td>
</tr>
<tr>

</tr>
</table>
<p>



<?php
endforeach;

}

if($_GET[id])
{
$posts = get_posts('p=' . $_GET[id] .'');

foreach ($posts as $post) : start_wp(); ?>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0" >
<tr>
<td align="right"><?php the_date(); ?></td>
</tr>
<tr>
<td valign="middle" class="blogTitlePrint"><br />
<?php the_title(); ?>
<hr /></td>
</tr>
<tr>
<td><?php the_content(); ?></td>
</tr>


</table>
<br />

<?php
endforeach;
}
?>

最佳答案

将一个类添加到您的表格中,该类包含右侧栏中的元素。我称之为“边 table ”。在您的 CSS 中添加以下内容:

.side-table p { text-align: center; }

关于css - 加载到页面中的 wordpress css 覆盖主 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18954908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com