Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
I have noticed that if Dynamic Folders is active and the title of the page is too long, it pushes the layout. See attachment.

Just thought I'd flag it.

Attachments

Good catch. The padding-top of the buttons is clipping the top right links. I found with my theme it was best to just absolute position the #admin-subnav to allow for longer template titles.
Thank you for reporting this bug.
As it happens, this has been reported before and a patch has already made way into the upcoming v1.3.

For now you can manually make the following changes:
Please edit 'couch/themes/styles.css' and change the following at line 530
from
ul#admin-subnav, ul.k_element_deleted_nav{
height:26px;
float: right;
margin: 10px 23px 5px;
display: inline;
}

to
ul#admin-subnav, ul.k_element_deleted_nav{
height:26px;
position:absolute;
right:0;
top:0;
margin:10px 1px 5px;
}
3 posts Page 1 of 1