lowkeywicked

Somni - User Profile Float Custom

Oct 1st, 2025
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.36 KB | None | 0 0
  1. <!-- CONTAINER DIV --- put your background pattern here
  2. ---- if you want to do one big image instead of a pattern, add this into the style tag-
  3. background-size:cover; background-position:center;
  4.  
  5. -------------------------------------------------------------
  6.  
  7. this layout has fully custom colors, you can modify the colors in the style tags to change the look
  8. the default focal/highlight color is #f58c9f
  9. the default font color is #212529
  10.  
  11. --------------------------------------------------------------->
  12. <div class="container-fluid shadow rounded border-0 p-lg-5 p-4 my-3"
  13. style="background-image: url('BACKGROUND_PATTERN_URL_HERE');
  14. background-repeat: repeat; background-attachment: fixed; background-color: transparent; border-radius: 16px; max-width: 1100px;">
  15. <div class="container-fluid p-xl-5 p-lg-4 p-md-3 p-0">
  16. <div class="row no-gutters justify-content-center align-items-center">
  17. <div class="col-lg-auto pl-lg-4 order-2">
  18.  
  19. <!-- featured image ---- this will auto-size itself to fit in the space
  20. ---- you can adjust the max-height and max-width to control how big it can get --> <img class="d-block mx-auto" style="max-height: 650px; max-width: 350px; border-radius: 16px;"
  21. src="IMAGE_URL_HERE" />
  22.  
  23. </div>
  24. <div class="col-lg mb-lg-0 mb-4 order-1">
  25.  
  26. <!--------- user content card -- this will auto-size itself to fit with the image ------------------------->
  27. <div class="rounded p-4" style="background: rgba(255,255,255,.85); color: #212529; border-radius: 16px;">
  28.  
  29. <!---- your name or title here ----->
  30. <h1 class="text-center text-uppercase mb-1" style="color: #f58c9f; font-size: 2em; letter-spacing: 1px; font-weight: 500; font-family: verdana, arial, sans-serif;">
  31. Your Name</h1>
  32.  
  33. <!---- adjectives here -------------->
  34. <p class="text-center small mb-0" style="color: #212529; letter-spacing: 1.5px;">
  35. gender . age . adj
  36. </p>
  37.  
  38. <hr class="mt-2 mb-0 w-75 mx-auto" style="border-color: rgba(0, 0, 0, .125);" />
  39. <div class="py-3 text-justify">
  40.  
  41. <!-------- write content here -- this box grows with content -- i suggest keeping it concise -->
  42. <p style="color: #212529; font-weight: 400;">This box will grow with content so 'tis up to you how big she gets. The image to the side can be any size- if the image is larger, the box will center itself. If the content box is taller, the image will center itself.</p>
  43. <p style="color: #212529; font-weight: 400;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse a felis molestie, porttitor est eget, euismod mauris. Integer fermentum est vitae dui pretium fermentum. Fusce quis velit vel sem pellentesque iaculis congue non lorem. Aliquam vulputate lacus consequat, volutpat ex ut, blandit lacus. Sed egestas risus ut gravida blandit. In vitae nisi eu mi suscipit semper in eget justo. Sed feugiat dictum posuere. </p>
  44.  
  45. </div>
  46. <hr class="mt-0 w-75 mx-auto" style="border-color: rgba(0, 0, 0, .125);" />
  47. <p class="text-center mb-0" style="font-size: 1.5em;">
  48.  
  49. <!-- SOCIAL MEDIA LINKS-- i've included a bunch of common ones, you can erase links you do not need
  50. ----- these use font awesome icons, you can edit the links to use other icons
  51. --------------------------------------------------------------------------------->
  52.  
  53. <a style="color: #f58c9f;" href="BLUESKY_LINK_HERE">
  54. <span class="fab fa-bluesky mx-1" title="Bluesky">&nbsp;</span></a>
  55.  
  56. <a style="color: #f58c9f;" href="TOYHOUSE_LINK_HERE">
  57. <span class="fas fa-house mx-1" title="Toyhouse">&nbsp;</span></a>
  58.  
  59. <a style="color: #f58c9f;" href="TUMBLR_LINK_HERE">
  60. <span class="fab fa-tumblr mx-1" title="Tumblr">&nbsp;</span></a>
  61.  
  62. <a style="color: #f58c9f;" href="DEVIANTART_LINK_HERE">
  63. <span class="fab fa-deviantart mx-1" title="Deviantart">&nbsp;</span></a>
  64.  
  65. <a style="color: #f58c9f;" href="FURAFFINITY_LINK_HERE">
  66. <span class="fas fa-paw mx-1" title="Furaffinity">&nbsp;</span></a>
  67.  
  68. <a style="color: #f58c9f;" href="CARRD_LINK_HERE">
  69. <span class="fas fa-id-card mx-1" title="Carrd">&nbsp;</span></a>
  70.  
  71. <a style="color: #f58c9f;" href="COMMISSIONS_LINK_HERE">
  72. <span class="fas fa-palette mx-1" title="Commissions">&nbsp;</span></a>
  73.  
  74. <!-- CREDIT FOR PROFILE ART -- if you drew the art yourself, you can erase this! -->
  75. <a style="color: #f58c9f;" href="ART_CREDIT_HERE">
  76. <span class="fas fa-image mx-1" title="Art Credit">&nbsp;</span></a>
  77.  
  78. <!-- CODING CREDIT -- please leave this here! -->
  79. <a style="color: #f58c9f;" href="https://somnivores.com/user/Pinky"><span class="fas fa-code mx-1" title="HTML Credit">&nbsp;</span></a>
  80.  
  81. </p>
  82. </div>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
Advertisement
Add Comment
Please, Sign In to add comment