Tagged: custom id
Hi,
I turned on the custom ID on the them and I am trying to make some customization to some classes to a specific ID, but for some reason I am doing something wrong. The ID does not acknowledge the classes. it worked in the pas. I am confused.
illu-box {
background-color: #e5e5e5;
}
#top .illu-box li {
line-height: 14px;
}
#top illu-box h1 {
font-weight: bold;
color: white;
background-color: #a9ceea !important;
}
CSS:
#top .illu-box h2 {
font-weight: bold;
font-size: 36px;
c
Hi dhuet!
Could you provide us with a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hi!
I’m not sure what you are trying to do but your class is added to 2 elements, on one element you have added it like this: #illu-box which is not going to work, just remove the hash sign. Also, in your first and third CSS class you have forgot to put a . in front of your class, change it to this:
.illu-box {
background-color: #e5e5e5;
}
Best regards,
Rikard
I am trying to target a specific column (eg: .illu-box) and have dedicated style for colors , H1, h2, h3 and much more.
Thank you!
Didier