Hello.
I'd like some assistance
In my forum we run discussions threads, where we discuss multiple things. I want to add these discussions to the forum. I made an image using Photoshop to make this easier to explain.
Right now, the forum looks like this (Index): https://i.imgur.com/Ha57O13.png
I want to add this: https://i.imgur.com/Tci5BAC.png
And have it look like this: https://i.imgur.com/XOM3RzD.png
of course, there will be more discussions, the 'TBA' stands for 'To be added'.
This is the code I want to add:
Is it possible?
I'd like some assistance
In my forum we run discussions threads, where we discuss multiple things. I want to add these discussions to the forum. I made an image using Photoshop to make this easier to explain.
Right now, the forum looks like this (Index): https://i.imgur.com/Ha57O13.png
I want to add this: https://i.imgur.com/Tci5BAC.png
And have it look like this: https://i.imgur.com/XOM3RzD.png
of course, there will be more discussions, the 'TBA' stands for 'To be added'.
This is the code I want to add:
- Code:
<style>
#roachd1 {
width: 150px;
background-color: #151515;
font-size: 12px;
font-family: Verdana;
}
.roachdd {
border: 1px solid rgb(69, 61, 0);
margin: 1px;
padding: 3px;
}
.roachdt {
color: #F0A418;
text-align: center;
border: 1px solid #50381A;
margin-bottom: 3px;
background-color: #2C2310;
}
</style>
<div id="roachd1">
<div class="roachdd">
<div class="roachdt">Shaddolls Discussion</div>
<img src="http://i.imgur.com/N9wLLgy.png" style=" width:140px; height:140px;">
</div>
</div>
Is it possible?