I hate to sound like a noob, but I have a stylesheet that I want to use, yet am unsure of how I would do that or if the code needs to be changed. The sheet looks like this:
.ItemDiscussion.Role_MasterFounder .MFBackgroundCall {
color: transparent;
background: no-repeat url('
https://puu.sh/kt4MM/546f1987ea.png');
content: " " !important;
width: 86px;
height: 42px;
margin-right: 8px;
margin-top: 4px;
margin-left: -5px;
display: block;
border-left: 4px solid #7439ad;
}
.DataList > .Role_MasterFounder {
background-color: #272673;
background-image: url('
https://puu.sh/kt4MM/546f1987ea.png');
background-repeat: no-repeat;
background-position: right bottom;
border-radius: 4px;
border-left: 4px solid #7439ad;
}
.ItemDiscussion.Role_MasterFounder {
background-color: #272673;
background-image: url('
https://puu.sh/kt4MM/546f1987ea.png');
background-repeat: no-repeat;
background-position: right bottom;
border-radius: 4px;
border-left: 4px solid #7439ad;
}
This basically will add a custom background to a forum post. I get what I need to do with it, using something like:
<head>
<link rel="stylesheet" type="text/css" href="
https://0ce5b546158fc03af3528954d561f403ddc5f359.googledrive.com/host/0B8xgs1o6nZK6NkZwcUhDN0wzTWM/OMDUForumBackground.css">
</head>
To link to it. My issue is that I'm not sure what the next step is. :\
I apologize if I'm not giving the right information, I'm still very new to CSS. Let me know if I can clarify this any.