I bought a couple of website templates that i would like converted into drupal. There is no need to make any images etc, i just need them drupal ready.
I have about 10. They are already in html and css (except for a couple that are table layouts) so it shouldnt be that hard to convert. The only issue is i want it to be a good conversion. In other words, the user must be able to add blocks that follow the template and utilize drupal's primary links function.
For an experienced person it shouldnt take too long i suppose.
After looking at several themes, I'm currently leaning towards a modification of the Garland theme. I really like Garland and all of its features, but would like to have the navigation on the right side. Has anyone attempted this previously?
Hello guys,
For some time i wanted to add drop down menu on primary links. I tried using css and js on static html page using css(tableless html page). It worked perfect. Now i want to do the same in drupal. But the only problem is how to add those div dynamically so that drop down menus can appear where they are supposed to appear.
I want the output(HTML) to look like this on primary links.
<div id="nav">
<ul>
<li><a href="test1">Business1</a></li>
<li><a href="test1">Business2</a></li>
<li><a href="test1">Business3</a></li>
<li><a href="test1">Business4</a></li>
//****** the div mentioned bellow will be the drop down menu for Business4 above.**********
<div>
<ul>
<li><a href="test1">Drop down1</a></li>
<li><a href="test1">Drop down2</a></li>
</ul>
</div>
//******end of drop down menu********
<li><a href="test1">Business5</a></li>
</ul>
</div>
Now if anybody can help out to bring something like the above output html, then we are going to have another way of implementing drop down menu.
Please keep in mind that the second div for drop down menu is not necessarily important as long as the lay out will look like the way it looks on the given codes.