以下是仍在开发中的my website链接。它在Internet Explorer 8和9以及Firefox中运行良好。 webkit浏览器(Safari和Chrome)无法正确显示facebook“like box”。盒子在分界线上方。虽然在IE7中由于一些奇怪的原因,搜索表单不是float:right
。
这是我的第一个网站,对于任何可悲的问题感到抱歉:)你也可以告诉我为IE6编写一个脚本,它会显示一条消息,升级到现代浏览器,因为IE6绝对会搞砸一切。任何其他建议将受到高度赞赏。我使用Wordpress的工具箱主题来开发这个博客。
我用过:
time.entry-date {color:#000; font-style:italic; text-decoration:none;}
要将发布日期的颜色更改为黑色并删除下划线,但text-decoration:none
不起作用。
答案 0 :(得分:2)
Facebook关注框:
#fb-root {
position:relative;
float: left;
margin-left: 10px;
/* remove: margin-top, z-index */
}
&lt;&lt;&lt;&lt;&lt; 9。:添加到页面<head>
:
<!--[if lte IE 8]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
jQuery for ie6消息:
if ($.browser.msie && parseInt($.browser.version) =< 6) {
var here = '<a href="link-to-update.html"> here</a>';
$('body').prepend('<div id="message">Please upgrade your browser'+here+'!</div>')
}
希望它有所帮助。