PDA

View Full Version : Admin buttons not showing up correctly.



Sam Wells
July 10, 2013, 10:25 PM
A number of administration buttons are not showing up properly in the back end. I have highlighted them as per my screenshot.

In this instance they are 'Add a language' and 'Add a phrase', although there appears to be a number of buttons doing the same thing in various other panels around the site.

This can be experienced in both Chrome as well as Firefox on Mac, Flynax 4.1.0

Alex
July 11, 2013, 05:58 AM
Dear Sam Wells,

Try to add this line, should help.
I'm on my iMac not see the problem.

Open to edit the file: [ftp]/<your admin folder>/css/style.css
Find the code: ~250 line



/* custom icons */
a.button_bar span.center_list,
a.button_bar span.center_add,
a.button_bar span.center_search,
a.button_bar span.center_import,
a.button_bar span.center_remove,
a.button_bar span.center_compare,
a.button_bar span.center_video,
a.button_bar span.center_photo,
a.button_bar span.center_build,
a.button_bar span.center_edit,
a.button_bar span.center_lock,
a.button_bar span.center_unlock
{
padding: 0px 7px 0 25px;
background: url('../img/form.png') 1px -677px no-repeat;
}


and replace to:



/* custom icons */
a.button_bar span.center_list,
a.button_bar span.center_add,
a.button_bar span.center_search,
a.button_bar span.center_import,
a.button_bar span.center_remove,
a.button_bar span.center_compare,
a.button_bar span.center_video,
a.button_bar span.center_photo,
a.button_bar span.center_build,
a.button_bar span.center_edit,
a.button_bar span.center_lock,
a.button_bar span.center_unlock
{
padding: 0px 7px 0 25px;
background: url('../img/form.png') 1px -677px no-repeat;
display: inline-block !important;

}



Feel free to contact me if you have a question.

Sam Wells
July 11, 2013, 08:51 PM
Perfect, that's instantly sorted it.

Thanks Exe.