Hi all,
I started this topic in Disputes section but seems like it was wrong section for this subject, so please somebody remove it from there, I moving it over here.
I was always wondering if I missed something: Dolphin template has a lot of multiple divs inside each other when it's possible to use only one or two instead. For example:
<div class="sys_main_content" style="width:__main_div_width__;">
<div class="sys_mc_wrapper bx-def-margin-sec-leftright">
<div class="sys_mc">
or on the main menu:
<div class="sys_main_menu" style="min-width:1140px;">
<div class="sys_mm" style="width:1140px;">
<div class="sys_mm_cnt bx-def-margin-sec-leftright">
<table class="topMenu" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="top">
<a class="top_link" href="http://192.168.1.121/index.php">
<span class="down bx-def-padding-sec-leftright">Home</span>
</a>
Here's 3 <div>, one <table> and one <span> instead of simple structure like
<div><ul><li><a>
Why not to use <ul><li> instead of old_fashioned <table> and multiple <div> and <span>? Do we really need this sandwich?