Nieuw lid |
|
Het probleem bestaat erin dat ik het menu en de kalender naast elkaar wil plaatsen in het linkergedeelte.
Daarnaast is er in dat linkergedeelte ook een lijst met de komende data van de activiteiten. Deze data wil ook niet op zijn plaats blijven, alsook de stijlkiezer, zoals je kan zien op deze pagina's:
Beginpagina
Studieaanbod
MS KA Quiz
Mogelijks biedt de html en css-code een beetje meer inzicht:
<div class="left">
<h1>
...
</h1>
<table width="311" border="0" cellpadding="1">
<tr>
<td>
...
</td>
</tr>
</table>
<ul class="menu"><li id="current" class="active item1"><a href="http://www.mskaroeselare.be/JoomlaDrive/"><span>. Start</span></a></li></ul>
<div class='eventcalq' align='center'>
<table class="mod_eventlistcalq_calendar" cellspacing="0" cellpadding="0">
<caption class="mod_eventlistcalq_calendar-month"><a href="/JoomlaDrive/index.php?&el_mcal_month=12&el_mcal_year=2008"><< </a> Januari 2009 <a href="/JoomlaDrive/index.php?&el_mcal_month=2&el_mcal_year=2009"> >></a></caption>
...</table>
</div>
<ul class="eventlistmod"><li>
<span class="date"><a href="/JoomlaDrive/index.php?option=com_eventlist&view=details&id=1:ms-ka-quiz">30.01.2009</a></span>
<span class="location">MS - KA Quiz</span>
</li></ul>
<div class="templatechooser">
<form name="templateform_19" method="post" action=""><select name="mod_change_template_19" id="mod_change_template_19" class="button" onchange=""><option value="groenestraat" >groenestraat</option><option value="tant" selected="selected">tant</option></select> <input class="button" type="submit" value="Select" /></form>
</div><br /> <br />
</div>
... <table width="311" border="0" cellpadding="1"> ... <ul class="menu"><li id="current" class="active item1"><a href="http://www.mskaroeselare.be/JoomlaDrive/"><span>. Start </span></a></li></ul> <div class='eventcalq' align='center'> <table class="mod_eventlistcalq_calendar" cellspacing="0" cellpadding="0"> <caption class="mod_eventlistcalq_calendar-month"><a href="/JoomlaDrive/index.php?&el_mcal_month=12&el_mcal_year=2008"><< </a> Januari 2009 <a href="/JoomlaDrive/index.php?&el_mcal_month=2&el_mcal_year=2009"> >></a></caption> <ul class="eventlistmod"><li> <span class="date"><a href="/JoomlaDrive/index.php?option=com_eventlist&view=details&id=1:ms-ka-quiz">30.01.2009 </a></span> <span class="location">MS - KA Quiz </span> <div class="templatechooser"> <form name="templateform_19" method="post" action=""><select name="mod_change_template_19" id="mod_change_template_19" class="button" onchange=""><option value="groenestraat" >groenestraat </option><option value="tant" selected="selected">tant </option></select> <input class="button" type="submit" value="Select" /></form>
.left {
float:left;
background-color: #b02050;
padding-top: 5px;
width: 331px;
}
.left h1 {
color: #ffffff;
font-variant: small-caps;
font-size: 16px;
text-align: center;
vertical-align: middle;
font-weight: bold;
}
.left a {
color: #ffffff;
}
.left table {
color: #ffffff;
font-variant: normal;
font-size: 11px;
text-align: center;
vertical-align: middle;
font-weight: lighter;
}
.left ul li {
float: right;
list-style-type: none;
}
.left ul li a {
margin-bottom: 2px;
margin-right: -4px;
margin-left: 5px;
font-size: 12px;
color: #ffffff;
text-decoration: none;
padding-top: 3px;
padding-left: 5px;
width: 160px;
float: right;
border-bottom-width: 3px;
border-bottom-style: solid;
border-bottom-color: #b02050;
}
.left ul li a:hover {
border-bottom-width: 3px;
border-bottom-style: solid;
border-bottom-color: #90a030;
}
.left ul li a:active {
color: #ffffff;
border-bottom-width: 3px;
border-bottom-style: solid;
border-bottom-color: #dd882e;
}
.eventcalq table.mod_eventlistcalq_calendar {
margin-right: 165px;
margin-left:5px;
margin-bottom: 5px;
margin-top: 5px;
}
.eventlistmod {
margin-right: 165px;
margin-left:5px;
margin-bottom: 5px;
margin-top: 5px;
}
.templatechooser {
margin-right: 165px;
margin-left:5px;
margin-bottom: 5px;
margin-top: 5px;
padding-top: 5px;
}
.left { float:left; background-color: #b02050; padding-top: 5px; width: 331px; } .left h1 { color: #ffffff; font-variant: small-caps; font-size: 16px; text-align: center; vertical-align: middle; font-weight: bold; } .left a { color: #ffffff; } .left table { color: #ffffff; font-variant: normal; font-size: 11px; text-align: center; vertical-align: middle; font-weight: lighter; } .left ul li { float: right; list-style-type: none; } .left ul li a { margin-bottom: 2px; margin-right: -4px; margin-left: 5px; font-size: 12px; color: #ffffff; text-decoration: none; padding-top: 3px; padding-left: 5px; width: 160px; float: right; border-bottom-width: 3px; border-bottom-style: solid; border-bottom-color: #b02050; } .left ul li a:hover { border-bottom-width: 3px; border-bottom-style: solid; border-bottom-color: #90a030; } .left ul li a:active { color: #ffffff; border-bottom-width: 3px; border-bottom-style: solid; border-bottom-color: #dd882e; } .eventcalq table.mod_eventlistcalq_calendar { margin-right: 165px; margin-left:5px; margin-bottom: 5px; margin-top: 5px; } .eventlistmod { margin-right: 165px; margin-left:5px; margin-bottom: 5px; margin-top: 5px; } .templatechooser { margin-right: 165px; margin-left:5px; margin-bottom: 5px; margin-top: 5px; padding-top: 5px; }
Alvast bedankt.
|