Forum Moderators: not2easy
<div style = "background-image: url(http://example.com/sites/default/files/images/our_partners3.png); background-repeat: no-repeat; list-style-type: none; padding-top: 7px;">
<ul>
<li>NASCO LIFE /FORM</li>
<li>SIMULAID</li>
<li>LIMBS AND THINGS</li>
<li>ADAM, ROUILLY LTD.</li>
<li>GAUMARD</li>
<li>KOYTO KAGAKU</li>
<li>3B SCIENTIFIC</li>
<li>SURGICAL SCIENCE</li>
<li>SWEMAC </li>
</ul>
</div> [edited by: engine at 5:55 pm (utc) on Jun 4, 2014]
[edit reason] examplified, please post code [/edit]
and a warm welcome to these forums. ;)
Try it like this...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Our Partners</title>
<style>
body {
background-color:#f0f0f0;
}
#list {
display:table;
width:480px;
height:339px;
margin:auto;
background-image:url(http://example.com/sites/default/files/images/our_partners3.png);
box-shadow:inset 0 0 20px #2a535f,4px 4px 8px #2a535f;
}
#list ul {
display:table-cell;
vertical-align:middle;
}
#list li {
width:200px;
margin:auto;
color:#2a535f;
text-transform:uppercase;
}
</style>
</head>
<body>
<div id="list">
<ul>
<li>nasco life / form</li>
<li>simulaid</li>
<li>limbs and things</li>
<li>adam, rouilly ltd.</li>
<li>gaumard</li>
<li>koyto kagaku</li>
<li>3b scientific</li>
<li>surgical science</li>
<li>swemac</li>
</ul>
</div>
</body>
</html>
unfortunately, I cannot help you with anything to do with
CMS, as it is a complete mystery to me. :(
Personally, I am just a "Notepad/Notepad++" bespoke coder. :)
Other members here, may be able you with "Drupal" issues. ;)
No problem, you're very welcome. ;)