-
AuthorPosts
-
August 14, 2015 at 2:35 pm #487774
I have a two part question —
First of all, in the recent updates of Enfold, I’m not able to use the custom.css file for my changes. If I place them in Quick CSS, they work. Move everything to the custom file, none of my changes are applied. I’ve seen this on two separate installs of this theme.
Secondly, I want to place a custom menu in the footer of the website — basically to LOOK and function exactly like the footer menu when displaying in the socket. I can’t manage to get them floating on a single line. Tried copying the socket menu CSS as well with no luck.
August 14, 2015 at 5:31 pm #487853Hey janeyj!
1. You most likely made a typo in the custom.css file. That or you are using CSS which is being overridden elsewhere in which case you can use the !important override to make sure it gets set.
a { color: red !important; }
2. You can setup the footer menu in Dashboard > Appearance > Menus. Just create a new menu and assign it to the footer menu area. Are you trying to display two menus in that area? I’m not really sure I understand.
Regards,
ElliottAugust 14, 2015 at 5:39 pm #487857Hi! Thanks for the quick response.
I’ll double check the css file, but I really don’t think that’s the case. The ONLY place I’m making customizations is in that file. I removed them from Quick CSS into custom and everything I’d done vanished. Again, this is the second site I have had this issue with.
For the footer menu, I want exactly what’s displaying in the socket right now (I will remove it from the socket once resolved), but I’d like it in the grey footer area. I tried setting up a widget with a custom menu, but that’s a vertical display. Make sense?
August 15, 2015 at 4:45 am #488101Hey!
1.) Please give us an example of the css declarations that is not working when you place them inside the custom.css file. And a link to the page where the css modification is intended for.
2.) Aside from the footer menu, are you planning to add other widgets inside the footer container? If not, you can set the footer columns to 1 then add a custom menu widget. We can adjust the css style to create an inline menu.
Best regards,
IsmaelAugust 18, 2015 at 5:01 pm #489608Yes I am trying to do this. Trying to adjust the CSS style to make the footer nav widget display horizontal inline. I have it set for 1 column. Can’t seem to get it.
- This reply was modified 9 years, 3 months ago by lanelee.
August 18, 2015 at 5:07 pm #489613Yes, same. That’s what I was attempting. I have the footer set to 2 widgets and was going to display a horizontal menu in the right column (widget). Ideally, it would look exactly like the socket menu — I’ve even tried duplicating those styles and it doesn’t work, though.
August 19, 2015 at 3:01 pm #490104Hey!
May we have temporary admin access to your website so we can take a closer look at your theme, widget and menu settings?
Best regards,
DakeAugust 19, 2015 at 3:30 pm #490136All styles are sitting in Quick CSS right now.
August 19, 2015 at 4:53 pm #490223Hey!
Please try adding the below css to your custom css section:
#top #footer .widget_nav_menu li { display: inline-block !important; float: none !important; clear: none !important; } #top #footer .widget_nav_menu li a { padding: 6px 10px; }
Regards,
DakeAugust 19, 2015 at 5:19 pm #490248That worked to get it floating, thanks! I wound up using all of this to display like the socket, and just applied to the desktop style.
#top #footer .widget_nav_menu li {
display: inline-block !important;
float: none !important;
clear: none !important;
}#top #footer .widget_nav_menu li a {
padding: 6px 10px;
border-right: 1px solid #bbbbbb;
font-size:11px;
}#top #footer .widget_nav_menu li:last-child a{
padding: 6px 0px 6px 10px !important;
border-right:none !important;
}#top .widget_nav_menu li {
padding:0 !important;
}#top .widget_nav_menu div {
margin-top:40px;
}August 19, 2015 at 7:17 pm #490326Hey!
Glad to know you got things sorted on your end :)
Is there anything else you needed help with in regards to the current thread?
Cheers!
DakeAugust 19, 2015 at 7:18 pm #490328I still don’t know what’s up with the custom.css file, but I don’t have time to sort it out now. Mark this as solved and if I can’t figure it out, I’ll submit a new ticket. Thanks so much!
August 20, 2015 at 2:25 pm #490789 -
AuthorPosts
- The topic ‘Issue with custom.css and Footer Widget Navigation’ is closed to new replies.