Hi everyone! This will be my first of probably many posts to the lists as I am 
very green (noob) at css. I of course will do my best to find answers via books 
and other resources before tying up someone elses time. Now on to my first 
question. I have the following little search function that is wrapped in <div> 
I cannot seem to get the two lined up with the same height and position, I have 
tried everything I can think of. Any suggestions? P.S This has a little cfml 
mixed into it, but that would not mess with the formatting.

View problem here


 http://72.174.248.16/totallyclassified/index.cfm



[Code]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>


<CFOUTPUT>
<CFFORM name="qSearch" 
action="index.cfm?page=cresults#session.amper##session.URLTOKEN#">
<DIV id="mainDiv" style="position:absolute; top:75px; left:75px; width:500px;">
<DIV id="text_field" style="width:120px; float:left">
<CFINCLUDE template="recentSearch.cfm">
</DIV>


<DIV id="categories" style="width:320px; height:33px; padding-left:5px; 
padding-top:4px; float:right; background:url(images/xp3.gif); border: 1px 
solid; border-color:##CCCCCC;">
        
        
            <CFSELECT name="search_cats" label="" required="no">
            <OPTION value="0" selected>Search All Categories</OPTION>
            <CFLOOP query="allMainCats">
             <OPTION value="#AllMainCats.categoryID#" <cfif 
isDefined("url.cid") AND url.cid eq 
AllmainCats.categoryID>Selected</cfif>>#allMainCats.CategoryName#</OPTION>
            </CFLOOP>
            </CFSELECT>
            &nbsp;
            <CFINPUT type="reset" name="reset" value="Erase" class="sbutton" />
            <CFINPUT type="submit" name="qSearchSubmit" value="Search" 
class="bbutton">
            <INPUT type="hidden" name="qSearchSubmit" value="Seach">
            <IMG src="images/arrow_r.gif" border="0" align="absmiddle">

        
</DIV>
</DIV>
</CFFORM>
</CFOUTPUT>


Doug B.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to