I have an existing CSS layout and I want to place a < div > for a sponsors section, I have marked in green where I want this div. Does anyone have any examples of what I need to do? URL for the site: http://cpanel24.proisp.no/~honnizrr/
I'm sure you can add a div however it looks like joomla based template, may be you can have some text box widgets in the back end (like we have in wordpress). Not sure as I haven't worked on Joomla. Have you tried posting here; Home > Forum > Design & Development > Content Management > Joomla (http://forums.digitalpoint.com/forumdisplay.php?f=111) ; I guess that's the more appropriate section and you might get a quick response.
yea this is more of a joomla problem. Its been a long time since Ive worked with the cms but you need to do something like this: in the index.php file of your template Just before you close the div with an id "rightmain" add this: <div id = "sponsors"> <jdoc:include type="modules" name="sponsors" /> </div> then, in the templateDetails.xml file in your template within the tag <positions> </positions> add a new position: <position>sponsors</position> save both files and you should be able to find the module when creating a new menu item in the backend. Im not sure about the best way of adding the sponsors in joomla, but if you make a menu item with custom html you can insert your sponsor code in there. Hope this helps