我一直试图将其作为徽标放在导航栏上的图像仅显示名称。我在资产管道中有一个名为 images 的文件夹中的图像,我正在使用引导程序。我目前在我的代码中有这个:
`<%= link_to image_tag('WikiLogoFinal.jpg'), getting_started_path, id: "logo" %>`
我的CSS如下:
#logo {
float: left;
margin-right: 10px;
font-size: 1.7em;
color: $niceBlandGreen;
text-transform: uppercase;
letter-spacing: -1px;
padding-top: 9px;
font-weight: bold;
line-height: 1;
&:hover {
font-size: 1.75em;
color: white;
background: $shinyOrange;
text-decoration: none;
}
}
图像不是问题,因为我使用了不同的图像。