« Web, HTML, Tech Forum

Problems with a code

Posted by N^7_Nvm

posted

Forum: Web, HTML, Tech

Hello, i modified a template to make mine cuz i dont how how to script, but for some reason the "About me" blurp does not show neither my writting and my playlist.

It would be great if somebody could help me, i will paste my code down here.

<style>/* Cursor & Scrollbar */

* {cursor: url('https://cur.cursors-4u.net/cursors/cur-1/cur5.cur'), auto !important;}

    body

        {background: url("https://i.postimg.cc/T2msQsZx/wallpaperflare-com-wallpaper.jpg");

background-position: left;

background-size: 100%;

background-repeat: no-repeat;

background-attachment: fixed;}


 .profile {background-color: ; opacity: 0.83 ; color: #fff;}


main {

        border-radius: 0 0 10px 10px;

        background: rgba(43,4,57, 0.83) !important;

padding: 0px 0px;

    }


* {font-family: Exo 2;}

.container {

        border-radius: 15px 15px 0 0;

        overflow: hidden;

        margin-top: 30px;

        padding: 10px;

    }


  footer {

        border-radius: 15px;

        background: rgba(43,4,57, 0.83) !important;

        color: #fff !important;

        display: block !important;

    }

footer .links a{color: #184558 !important;}

    footer .links a:hover{color: #184558 !important;}


footer .copyright a{color: #184558 !important;}

.profile .contact,

    .profile .url-info,

    .profile .table-section,

    .home-actions {

        border-color: #fff

    }

<style>


<style>/*Search Users Box (Background Color/Background Image)*/

    .top input{border-radius: 15px 15px 15px 15px;}

    .top{color: #581845 !important; }

</style>


<style>/*Buttons (Background Color/Background Image)*/

    button{

    border-radius: 25px 25px 25px 25px !important;

color: #007b7d;

font-weight: bold;

    background-color: #581845 ; Opacity: 0.83 !important;

}

</style>


<style>/* Headers Colors */

    .heading {

        padding: 5px 0 !important;

        margin-top: 15px;

        margin-bottom: 10px;

        background-color: #581845 !important;

        color: #fff !important;

        text-align: center;

        border-bottom: 2px solid;

border-radius: 10px 10px 10px 10px;

    }

.profile .blurbs .section h4{color: "fff ; font-weight: bolder;}

</style>


<style>/* Interests Table Info */

table.details-table {border-collapse: collapse;}

    table.details-table td {background-color: #4f1844 ; Opacity: 1 ; !important;}

.details-table td:first-child {color: #4f1844 !important;}

.table-section{font-color: #fff !important;}

</style>


<style>

/* The outer box */

.table-section {color: #fff ;}

<style>


<style>/* Links */

    a:hover {color: #c29b00;}

</style>


<style>h1{color: #fff !important;}</style>


<style>h1{font-size: 40px !important;}</style>


<style>A:link { color: #fff; }<style>


Report Topic

1 Reply

Reply by Ina

posted

I spent 10 minutes trying to understand what was wrong and I thought it was bc you had too many style tags or even didn't properly tagged the section's class.


BRO.... your forgot a " where you have the fff.

How you have:

.profile .blurbs .section h4{color: "fff ; font-weight: bolder;}

How it should be:

.profile .blurbs .section h4{color: "fff" ; font-weight: bolder;} 

(These little things used to frustrate my coding teachers too, but it takes so little to make everything ineffective T-T)


Now try to see if it worked!!!!


Permalink Report Reply