I've been learning some things about HTML, CSS and jQuery to make my personal website. So far I was able to fix most problems I've encountered, some with the precious help of the people here. Thanks!
Here is the current code: http://jsfiddle.net/jcml/1eyz2z6g/
I've noticed one problem:
If I try to center the menus vertically using this code adding the class "center" to the div class "links" I get a weird behavior. As can be seen here: http://jsfiddle.net/jcml/Lz4bq7mv/
.center ul {
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
1- How can I center the menus vertically in this situation?
I also noticed something, when using the website in the phone, when I click any link "Bla" a big box shows that selects all the submenu (the parent link and sibling blas)
2- Is there a way to change this behavior?
Also:
3- Is there a way to add an animation time for the colapsing and expanding?
Thanks