Hi, i am using confluence 5.1.3 and I am looking for the option to move employee card details from right to left. basincally would like to swap Activity and employee details section on http://<URL>/display/~username.
is there a way to do that? how much complex it is ?
Thanks,
Lakshmi
Maybe you could use a little javascript for this. Go to your global administration > Custom HTML section and insert the following code into the "At the END of the Head" field
<script type="text/javascript"> AJS.toInit(function(){ var item = jQuery("#com-atlassian-confluence.profile #main .profile-page .page-item.profile-main"); item.parent().append(item.removeClass("profile-main")).children(".profile-info").addClass("profile-main"); }); </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.