I am having a bit of an issue programming my website for OceanGrownFin.com. If you scroll thru the site, the three sections I'm having trouble with are the CSS backgrounds for the events, my video pop out, and my twitter feed. On each of these, I've went into the .less files and pointed to the picture I was looking to use, but for some reason it isn't displaying. For example:
.cbx-event {
background: url(/assets/img/shows_bg.png)no-repeat center fixed;
-webkit-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
background-size: cover;
color: #ffffff;
.cbx-inner {
.bg-rgba(@black-color, 0.8);
padding: 11rem 0 11.4rem;
}
.cbx-heading {
h2 {
i {
color: @white-color;
span {
background: @white-color;
}
}
}
}
that's the code that's used in my event.less file. I was told that I need to compile these .less files, which I tried to do using Koala and WinLESS. On both programs I receive this error when I attempt to compile:
C:\Users.........\themeforest-17690374-musix-music-band-html-template\ogf\assets\less\event.less NameError: variable @black-color is undefined in C:\Users\royal\Desktop\OG FIN WEB\themeforest-17690374-musix-music-band-html-template\ogf\assets\less\event.less:14:17
13 .cbx-inner {
14 .bg-rgba(@black-color, 0.8);
15 padding: 11rem 0 11.4rem;
Sorry if this is too much detail, I'm just trying to make sure I put all the info I have. I have some familiarity with HTML but I'm not a great coder so it may be something very simple.