Replies

Aug 10, 2024 1 year ago
Jayme
is lonely
User Avatar

[font=times new roman]I'd like to change the background color of my profile section(s) to a solid color (ie. ), not transparent, gradient, or however it is now with the white border. I'd like my entire profile to be one color, if that makes. Any guidance would be appreciated! Thank you![/font]

<style>

{font-size:11px;} a{font-size:11px!important;}

body,html{background-image:url(); background-color:; color:; font-family:helvetica; font-size:11px;}

a {text-decoration:none!important; color:!important;} a:hover {color: ; important;} b {color:;} i {font-family:helvetica;}

.header, {font-family: helvetica; background-image:none; background-color: ; border-bottom:0px!important;}

</style>

Aug 11, 2024 1 year ago
Hongske
is lost in space
User Avatar

Hi there !

First of all, I cleaned up your existing code a bit and changed some things for clarity. See the following body, html { background-color: ; color: ; font-family: Helvetica, Arial, sans-serif; font-size: 11px; }

.header, { font-family: inherit; background-image: none; background-color: ; border-bottom: 0px !important; }

{ font-size: 11px; }

a { font-size: inherit; }

a { text-decoration: none !important; color: !important; }

a:hover { color: !important; }

b { color: ; }

  • Changed the order around so things are grouped better
  • Changed "helvetica" to the font-stack "Helvetica, Arial, sans-serif" so that your font renders as closely as possible even for folks who don't have Helvetica installed.
  • Used "inherit" for those properties that you want to inherit from their parent-elements

As to changing the rest of your profile, here's some .block, .info_block { border: none; background-image: none; } This removes the border and the background-images for the blocks.

Hope this was what you were looking for!

Aug 11, 2024 1 year ago
Jayme
is lonely
User Avatar

[font=times new roman] this was so incredibly helpful, thank you![/font]

Aug 12, 2024 1 year ago
Hongske
is lost in space
User Avatar

I'm glad this helped! Feel free to ping me if you have any other questions <3

PS: Don't forget to change the topic title so that the mods can lock this thread :3

Please log in to reply to this topic.