I have done in the past a full tip to show how to design all of the page for the photos edit section but for now here is just a little tip to help make the delete photo and rotate photo links stand out as they are easily missed. Also I have added a hover colour so you can add some colour on hover. I set them to Red and Gold so you just edit those colours as required. Also I got the words to show up by the icons as well which helps and moved the delete to the left and the rotate to the right to seperate them more.
All the code is just CSS so goes in your design studio custom css
/** PHOTOS EDIT PAGE FOR DELETE AND ROTATE **/
.photoEditPage-linkbarContainer .linkbar { float:none; width:100% }
.photoEditPage-linkbarContainer > ul:nth-child(1) > li:nth-child(1){ float:left } /* delete photo */
.photoEditPage-linkbarContainer > ul:nth-child(1) > li:nth-child(1) >a:hover{ color:red }
.photoEditPage-linkbarContainer > ul:nth-child(1) > li:nth-child(2){ float:right } /* rotate photo */
.photoEditPage-linkbarContainer > ul:nth-child(1) > li:nth-child(2) >a:hover{ color:gold }
.photoEditPage-linkbarContainer > ul:nth-child(1) > li:only-child >a:hover{ color:gold }
.photoEditPage-linkbarContainer > ul:nth-child(1) > li:only-child{ float:right }
.photoEditPage-linkbarContainer .icon{ display:inline } /* show the words */
Example
Replies