Thread Starter
TeqToo
(@teqtoo)
When you say long, are you referring to the length of the column or the width?
Regarding the animation, this is what does it:
aside li {
line-height: 1.5;
padding: 6px 0;
border-bottom: 1px solid #ebebeb;
-moz-transition: padding-left .3s ease-in-out;
-o-transition: padding-left .3s ease-in-out;
-webkit-transition: padding-left .3s ease-in-out;
transition: padding-left .3s ease-in-out;
}
aside li:hover {
cursor: pointer;
padding-left: 10px;
}
On each of the transitions, you would replace the attributes with: none;
Then for the hover, change 10px to 0.
Thread Starter
TeqToo
(@teqtoo)
I mean the length of the column. Width is fine.
Thread Starter
TeqToo
(@teqtoo)
Can I just pop that code above in custom css to override, or must I create a child theme to do that?
Any custom CSS can definitely be added to your own stylesheet override. The above would be:
aside li {
-moz-transition: none;
-o-transition: none;
-webkit-transition: none;
transition:none;
}
aside li:hover {
padding-left: 0;
}
You can of course adjust the padding as needed.
Regarding he length of the column, this is only determined by what content is published there, ie: widgets.
Thread Starter
TeqToo
(@teqtoo)
Thanks…I’ve taken out the animation for their review. I suspected that there wouldn’t be any way to compact that menu any further, and I told the client the reason “other” sidebar menus they’ve seen are more compact is that they are not mobile-friendly.
There is always the option of a toggle or accordion menu plugin (widget) that can be used.
Thread Starter
TeqToo
(@teqtoo)
I could do the research on that, but frankly, I’m not being paid enough. [:-D
So the question is….do we set this as resolved or…?
As for not being paid enough, if only I could charge $1 for each free theme download I get, I’d be able to afford my Starbucks addiction π
Thread Starter
TeqToo
(@teqtoo)
It’s resolved enough for me. We just won’t tell the client there’s something else I could explore.
I hear ya…and one of these times I’ll be springing for a premium theme for one of these clients!