jaykappy Posted July 3, 2013 Share Posted July 3, 2013 (edited) I am trying to change the size, bold, and color of text in the below code...having issues I simply want the text returned below to be in BOLD, red and say 14font The below returns in format like below Asbuilts(1 image) non priate Edit / Delete I want this Asbuilts(1 image) non priate Edit / Delete <?php echo '<p><a href="view_album.php?album_id=', $album['id'], '">', $album['name'], '<a/> (' <div id="borderdiv"> <div> <?php echo '<p><a href="view_album.php?album_id=', $album['id'], '">', $album['name'], '<a/> (', $album['count'], ' images) <br />', $album['description'], '...<br /><br>' ?> <?php echo '<a href="album.php?album_id=',$album['id'],'">Edit</a> / <a href="album.php?album_id=',$album['id'],'">Delete</a></p>' ?> </div> </div> Edited July 3, 2013 by jaykappy Quote Link to comment Share on other sites More sharing options...
jaykappy Posted July 3, 2013 Author Share Posted July 3, 2013 go it <div id="borderdiv"> <div> <?php echo '<p ><a style="color:red;" href="view_album.php?album_id=', $album['id'], '">', $album['name'], '<a/> (', $album['count'], ' images) <br />', $album['description'], '...<br /><br>' ?> <?php echo '<a href="edit_album.php?album_id=',$album['id'],'">Edit</a> / <a href="delete_album.php?album_id=',$album['id'],'">Delete</a></p>' ?> </div> </div> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.