找到模板菜单按钮的颜色代码?

时间:2015-01-14 10:29:19

标签: html css templates menu colors

我对HTML / CSS相当新,但我认为我得到了基本的东西。我越来越了解但需要一些我正在玩的模板的帮助。

模板是来自TemplateTemo的Dragonfruit,可在此处看到:http://www.templatemo.com/preview/templatemo_411_dragonfruit

我一直在播放HTML和CSS文件,但是我找不到用于更改顶部菜单栏按钮上的两种颜色的代码。 (Home,About等按钮上的两种颜色)

如果有人可以花两分钟时间下载模板文件并告诉我在哪里查看或如何工作,我真的很高兴。

肯定欢迎任何帮助!

非常感谢,

布赖恩

1 个答案:

答案 0 :(得分:0)

你也需要检查模板。

菜单使用背景图片:

.glossymenu {
    background: url("/images/menub_bg.gif") repeat-x scroll 0 0 rgba(0, 0, 0, 0);
    height: 46px;
    list-style: outside none none;
    margin: 0 auto;
    padding: 0 0 0 34px;
    position: relative;
}

在菜单上悬停你也有一个图像:

.glossymenu li a:hover, .glossymenu li.current a {
    background: url("/images/menub_hover_left.gif") no-repeat scroll left center rgba(0, 0, 0, 0);
    color: #fff;
}

标题也使用背景图片:

#top_section {
    background: url("/images/templatemo-header-6.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 116px;
}

您可以将规则背景更改为颜色:

background: #cccccc;