Hi everybody, and thanks for this amazing theme!
I would like to ask you two questions about menu & portfolio item.
1) For my menu, i would like to put some space between menu items.
More explicit
2) For my portfolio :
Thanks for your help!
Regards
I’ve solved my issue with portfolio’s items, with a simple border..
Now, i’m working on my menu items, still searching a solutions ^^
Thanks !
Hi!
Can you post the link to your Enfold website so we can inspect elements on it to provide you more accurate custom CSS code?
Best regards,
Yigit
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (min-width: 1340px) {
.av-main-nav > li > a { padding: 0 40px; }}
@media only screen and (min-width: 1140px) {
.av-main-nav > li > a { padding: 0 29px; }}
@media only screen and (min-width: 990px) {
.av-main-nav > li > a { padding: 0 20px; }}
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child > li > a { padding: 0 4px; }}
Best regards,
Yigit
Thanks Yigit, it works for the responsive, but, how can i do to put a larger space by default ? To align my “Collection” menu item at the left, and “Actualité” at the right ? You understand what I mean ?
Hey!
Please replace the code i posted with following one
@media only screen and ( min-width: 768px) {
li#menu-item-26 a { padding-left: 0 !important; }
li#menu-item-32 a { padding-right: 0 !important; }}
@media only screen and (min-width: 1340px) {
.av-main-nav > li > a { padding: 0 49px; }}
@media only screen and (min-width: 1140px) and (max-width: 991px) {
.av-main-nav > li > a { padding: 0 34px; }}
@media only screen and (min-width: 990px) and (max-width: 1139px) {
.av-main-nav > li > a { padding: 0 24px; }}
@media only screen and (max-width: 989px) and (min-width: 768px) and (max-width: 989px) {
.responsive .main_menu ul:first-child > li > a { padding: 0 5px; }}
Regards,
Yigit
Thanks Yigit !
You’re a star!