Hi
I made a php block in phpmyadmin and used this code to make links to upload too and organise the default photo album in an attempt to make it easier to arrange the profile picture.
$sNickName = getNickName((int)$_COOKIE['memberID']);
$sLink = '<a href="m/photos/albums/my/add_objects/' . $sNickName . '-s-photos/owner/' . $sNickName . '"><p>Upload photos to Profile Photo Album</p></a>';
echo $sLink;
$sNickName = getNickName((int)$_COOKIE['memberID']);
$sLink = '<a href="m/photos/albums/my/organize/' . $sNickName . '-s-photos/owner/' . $sNickName . '"><p>organize photos of Profile Photo Album</p></a>';
echo $sLink;
this works as I want it to, but I also want to add a button style to it. if i want to add bx-btn class to these links how would I do that? or am i barking up the wrong tree?