jag vill ha en ny meny och den nya menyn ska vara uppdelad till höger och till vänster.
Mitten vill jag fylla ut med en platshållare.
Jag får inte till det!
Som ni ser så fylls inte mitten ut plus att grafiksnutten i mitten ligger en eller två pixlar högre än resten.
Detta är min overall_header.html:
- Kod: Markera allt
<div id="menubar">
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="genmed" colspan="3">
<!-- IF not S_IS_BOT --><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN --> | <a href="{U_PROFILE}">{L_PROFILE}</a><!-- ENDIF -->
<!-- IF U_RESTORE_PERMISSIONS --> <a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --> <span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<!-- IF S_USER_LOGGED_IN -->
<!-- IF S_DISPLAY_PM -->
<!-- IF S_NEW_PM -->
| <a id="newpms" href="{U_PRIVATEMSGS}" style="background-color:#FFFFAA">{PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a>
<!-- ELSE -->
| <a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- ELSEIF S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --> | <a href="{U_REGISTER}">{L_REGISTER}</a>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN --> | <a href="{U_PERS_NOTES}">{L_PERS_NOTES}</a><!-- ENDIF -->
</td>
</tr>
<tr>
<td align="{S_CONTENT_FLOW_START}">
<a href="http://www.classicmachinery.net/forum/index.php" alt="Forum Startpage" title="Forum Startpage"><img src="http://www.classicmachinery.net/forum/images/navi/forum.gif" border="0"></a><!-- IF U_CLASSIFIEDS --><a href="{U_CLASSIFIEDS}" alt="{L_CLASSIFIEDS}" title="{L_CLASSIFIEDS}"><img src="http://www.classicmachinery.net/forum/images/navi/classifieds.gif"></a><!-- ENDIF --><a href="{U_DOWNLOADS}" alt="{L_DOWNLOADS}" title="{L_DOWNLOADS}"><img src="http://www.classicmachinery.net/forum/images/navi/downloads.gif" alt="{L_DOWNLOADS}" title="{L_DOWNLOADS}"></a><a href="{U_CALENDAR}" alt="{L_CALENDAR_EXPLAIN}" title="{L_CALENDAR_EXPLAIN}"><img src="http://www.classicmachinery.net/forum/images/navi/calendar.gif" alt="{L_CALENDAR_EXPLAIN}" title="{L_CALENDAR_EXPLAIN}"></a><a href="{U_LEXICON}"><img src="http://www.classicmachinery.net/forum/images/navi/lexicon.gif"></a><!-- IF S_DISPLAY_MEMBERLIST --><a href="{U_MEMBERLIST}"><img src="http://www.classicmachinery.net/forum/images/navi/members.gif"></a><!-- ENDIF -->
</td>
<td style="background-image:url(http://www.classicmachinery.net/forum/images/navi/background_navi.gif); background-repeat:repeat-x">
</td>
<td align="{S_CONTENT_FLOW_END}">
<img src="http://www.classicmachinery.net/forum/images/navi/separator_navi.gif"><a href="{U_FAQ}"><img src="http://www.classicmachinery.net/forum/images/navi/faq.gif"></a><!-- IF S_DISPLAY_SEARCH --><a href="{U_SEARCH}"><img src="http://www.classicmachinery.net/forum/images/navi/search.gif"></a><!-- ENDIF -->
</td>
</tr>
<tr>
<td colspan="3">
<!-- IF S_DISPLAY_SEARCH -->
<p class="searchbar">
<!-- IF S_USER_LOGGED_IN -->
<form id="search_by_time" action="{U_SEARCH}" method="post">
<select name="st" onchange="search_by_time_submit();" class="gensmall">
<option value="1" selected="selected">{L_SELECT_TIME}</option>
<option value="15">{L_15_MINUTES}</option>
<option value="30">{L_30_MINUTES}</option>
<option value="45">{L_45_MINUTES}</option>
<option value="60">{L_1_HOUR}</option>
<option value="120">{L_2_HOURS}</option>
<option value="360">{L_6_HOURS}</option>
<option value="720">{L_12_HOURS}</option>
<option value="1440">{L_1_DAY}</option>
<option value="2880">{L_2_DAYS}</option>
<option value="4320">{L_3_DAYS}</option>
<option value="10080">{L_7_DAYS}</option>
<option value="20160">{L_2_WEEKS}</option>
<option value="43200">{L_1_MONTH}</option>
<option value="129600">{L_3_MONTHS}</option>
<option value="259200">{L_6_MONTHS}</option>
<option value="524160">{L_1_YEAR}</option>
</select>
<input type="hidden" name="search_id" value="time" />
<input type="hidden" name="sr" value="topics" />
| <a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a> | <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a><!-- IF S_INC_UNREAD_LINK --><!-- IF S_EXISTS_UNREADS --> | <a href="{U_SEARCH_UNREAD}">{L_VIEW_UNREADS}</a><!-- ELSE --> | <a href="{U_SEARCH_UNREAD}">{L_NO_UNREADS}</a><!-- ENDIF --><!-- ENDIF --> | <a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></span> | <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><img src="http://www.classicmachinery.net/forum/images/starthere.gif">
<!-- start mod view or mark unread posts (and end mod too) ... added unread references in the preceding line -->
<!-- ENDIF -->
</form>
</p>
<!-- ENDIF -->
</td>
</tr>
</table>
</div>
Jag vill alltså att den mellersta delen fylls ut automatiskt, men repeat-kommandot funkar tydligen inte ...
Någon som kan hjälpa mig?



