不知何故,我的图像轮播没有显示任何内容。它应该显示一个完整大小的图像。如果我没有将DOCTYPE设置为html5,它可以正常工作。查看来源的任何想法?
答案 0 :(得分:1)
删除子主题的CSS @第164行中的.carousel-inner{
width: 100%;
height: 100%;
}
#myCarousel {
min-height: 100vh;
}
规则。
并添加
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="xsl">
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:key name="group" match="userSearchRecords" use="userAccount/login"/>
<xsl:template match="searchResponse">
<searchResponse>
<xsl:for-each select="userSearchRecords[count(. | key('group', userAccount/login)[1]) = 1]">
<xsl:sort select="userAccount/login" />
<userSearchRecords>
<userAccount>
<xsl:for-each select="key('group', userAccount/login)">
<xsl:if test="not(preceding-sibling::userSearchRecords[userAccount/login = current()/userAccount/login])">
<xsl:copy-of select="userAccount/login"/>
</xsl:if>
<xsl:copy-of select="userAccount/otherAttributes"/>
</xsl:for-each>
</userAccount>
</userSearchRecords>
</xsl:for-each>
</searchResponse>
</xsl:template>
</xsl:stylesheet>
到它。