« Web, HTML, Tech Forum

How do I add borders to my profile?

Like the sections are just in there with no border or anything so i would like to know how could i add borders to the sections?Please


Report Topic

1 Reply

Reply by spaceman72

posted
updated

Between your <style> and </style> in About Me add the following:

.profileModules .module, .blurbBox, .extendedProfile {
border: 2px solid #00ff00 !important;
padding: 10px;
margin-bottom: 15px;
border-radius: 8px;
box-shadow: 0 0 10px #00ff00;
}

.profileModules .module targets the main content boxes.
  • .blurbBox, .extendedProfile targets additional blurb or extended profile sections.
  • Replace #00ff00 with your preferred color hex code (e.g., #ff0000 for red, #ffd700 for gold, etc.).
  • Change solid to dashed, dotted, or double to alter the border style.
  • Remove or tweak the box-shadow if you don’t want a glow effect.

  • Permalink Report Reply