Hi,
I’m triying to make some changse in the top main navigation menu:
COLCHONES TECNOLOGIA ACCESORIOS MAYOREO
They can be seen in http://acolsa4.vendun.com/
What I want to achieve
– Change the font size
– Center in the page COLCHONES TECNOLOGIA ACCESORIOS MAYOREO but left the search right alignmet.
– Change the space between letters
I haven’t be skilled enough to target these parts with CSS selector using google chrome.
Thanks
Jorge
Hi,
1) You can use following code – insert it into the quick css field
.social_header .main_menu ul:first-child > li a {
font-size: 16px;
}
2) That’s imo not easily possible if you want a responsive website/menu. One solution would be to add a margin/padding to the link items or to increase the width of the main menu – however both solutions would break the responsive design.
3) You can use following code
.social_header .main_menu ul:first-child > li a {
letter-spacing: 0.2em;
}