missodessa's profile picture

Published by

published
updated

Category: SpaceHey

HTML CSS CODE TO EDIT PROFILE


HEADER GRADIENT BACKGROUND

nav .top {
    padding: 15px 10px 14px 10px;
    display: flex;
    height: 100px;
    background-color: #ff0099;
    background-image: linear-gradient(orange, #ff0099, purple); /*delete enire line if you just want solid background add more colors seperate by comma*/
}   



    
    
    
HEADER IMAGE BACKGROUND


nav .top {
    padding: 15px 10px 14px 10px;
    display: flex;
    height: 100px;
    background-color: #ff0099;
    background-image: url(https://i.ibb.co/qm2c6BZ/gradientbg.jpg) repeat; /*delete enire line if you just want solid background*/
}   



    
    



HEADER LINKS AND HEADER BACKGROUND COLORS


    nav .links a {
    text-decoration: none;
    color: #f09; /* Change Link color*/
    font-size: 0.98em;
}
    
nav .links a:hover  {
    color: orange; /* Change Link hover color*/
    text-decoration: underline;
}

nav .links {
    background-color: purple;/* Change background color behind links*/
}

    


   

PROFILE NAME COLOR AND STYLE


.profile h1 {
    font-size: 3.5em;
    margin: 0 0 10px 0;
    font-family: Tahoma;
    color: #f09;
}   
  
    
CHANGE ONLINE ICON AND OFFLINE STATUS COLOR


.online {
color:#f000; /*this is a transparent hex which hides ONLINE! text change this to any color if you want it to show*/
}

.online img  {
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 80px; /* Width of new image */
  height: 1.5em; /* Height of new image */
  padding-left: 80px; /* Equal to width of new image */
 background: url(https://www.myspacegens.com/images/online_now/103.gif) no-repeat; /* replace url with link to your online gif*/
}
    
time.ago {
    color: #ff0099;
}



    
    

LINKS


a {
    color: #D81DC4; /* Link color */
    text-decoration: none;
}

a:hover, a:active, .blog-entry .kudos-btn:hover, .blog-entry .kudos-btn:active {
    color: #8300cc; /* hover and active link color */
    text-decoration: underline;
}
    

    
    
ABOUT ME AND WHOD ID LIKE TO MEET TEXT


    .profile .blurbs .section h4 {
    margin: 0;
    color: #ff0099;
}



    
    
SECTION TEXT


    .profile .blurbs .heading, .profile .friends .heading {
    background: #f09;
    color: orange;
    padding: 2px 7px;
}

    
    
CONTACT INTEREST LINK BOX COLORS


    .profile .contact .heading, .profile .table-section .heading, .home-actions .heading {
    background: #f09;
    color: white;
    padding: 2px 7px;
}

.profile .contact, .profile .url-info, .profile .table-section, .home-actions {
    width: 100%;
    border: 2px solid #f09;
    margin: 10px 0;
}
    
    .details-table td:first-child {
    background: #FBA7F2;
    color: #D81DC4;
    font-weight: bold;
    width: 33%;
}
    
    .details-table td {
    background: #FFD8F7;
    vertical-align: top;
}
    
    



    
    
COMMENT SECTION


    .comments-table td:first-child, .music-table td:first-child {
    background: #FBA7F2;
}
    
    .comments-table td, .music-table td {
    background: #FFD8F7;
}


    
MAIN TEXT COLOR


    main {
    color: #8300cc;}



    
    
    
GRADIENT BACKGROUND


    body {
height: 100%;
  background-color: #ff0099; /* For browsers that do not support gradients */
  background-image: linear-gradient(orange, #ff0099, purple);
}

    
    
    
IMAGE BACKGROUND


    body {

  background-color: #ff0099; /* For browsers that do not support gradients */
 background-image: url(https://i.ibb.co/qm2c6BZ/gradientbg.jpg) repeat;
}



61 Kudos

Comments

Displaying 2 of 2 comments ( View all | Add Comment )

alexiranth

alexiranth's profile picture

thank u sm for this omgggggg!


Report Comment

d9or

d9or's profile picture

omg thank you ive been trying to find out how to change he about me & who id like to meet text


Report Comment