I have some questions about Cassiopeia
1) I have set up a horizontal menu with a hover effect on the menu items that works well with the following css code:
Code: Select all
.container-header .mod-menu a:hover {
background-color: transparent;
color: #fef6a7;
/*font-size: 1.3em;*/
text-shadow: 4px 4px 3px #000;
filter: dropshadow(color=#000, offx=4, offy=4);
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
/*-ms-transform: scale(1.2);*/
}
2) I can't change the color of the footer. The class of this one is grid-child which I can't touch without changing the color of everything above.
3) I would like to change the yellow vertical bar that separates the center part from the right side. The class that corresponds to this column is column-gap, but I can't touch it without affecting the whole layout of the site. What can I do to reduce it or change its color?
I have white horizontal bars of different sizes that appear on some pages, like the one in the above screenshot or the one below. I don't know where they come from, I can't find them with the web inspector
Thank you