2015-12-08 48 views
0

我得把下面的表單代碼到一個單一的排狀:http://snag.gy/k5yrv.jpg創建於阿瓦達索主題在一排多場形式

<form method="GET" action="YOUR_JOBS_PAGE_URL"> 
    <p> 
    <label for="keywords">Keywords</label> 
    <input type="text" id="search_keywords" name="search_keywords" /> 
    </p> 
    <p> 
    <label for="keywords">Location</label> 
    <input type="text" id="search_location" name="search_location" /> 
    </p> 
    <p> 
    <input type="submit" value="Search" /> 
    </p> 
</form> 

我用阿瓦達索主題聯繫表7,我需要在一行中創建具有多個字段的表單將如下所示。例如,這使用3列部分,每列一個字段:

div class="fusion-one-third one_third fusion-layout-column fusion-spacing-yes">Your Name (required) [text* your-name]</div> 
<div class="fusion-one-third one_third fusion-layout-column fusion-spacing-yes">Your Message [textarea your-message]</div> 
<div class="fusion-one-third one_third fusion-layout-column fusion-spacing-yes fusion-column-last">[submit "Send"]</div> 

任何想法?

回答

0

當然可以,你不只是做:

<div class="fusion-one-third one_third fusion-layout-column fusion-spacing-yes">[text keywords placeholder "job title, keywords or company name"]</div> 
<div class="fusion-one-third one_third fusion-layout-column fusion-spacing-yes">[text location placeholder "city, province or region"]</div> 
<div class="fusion-one-third one_third fusion-layout-column fusion-spacing-yes fusion-column-last">[submit "Search"]</div> 

除非我完全誤解了你的問題?

+0

那麼,你_actually_使用聯繫表7本,或者你希望的樣子聯繫表格7確實在阿瓦達索的自定義窗體? – bluemwhitew

+0

我已經安裝了聯繫表7,所以我打算使用它。但它不一定要使用它。唯一的事情是我想提交按鈕採取Avada主題造型。那有意義嗎? – Benchmark

0

感謝您的幫助bluewhitew,但我不認爲這會奏效。完整的代碼如下。我錯過了一些東西,因爲我不想要一個'類別'字段,但我想我忽略了一個重要的功能。點擊提交應該帶你到工作清單頁面,並列出您的選擇。

<form method="GET" action="YOUR_JOBS_PAGE_URL"> 
    <p> 
    <label for="keywords">Keywords</label> 
    <input type="text" id="search_keywords" name="search_keywords" /> 
    </p> 
    <p> 
    <label for="keywords">Location</label> 
    <input type="text" id="search_location" name="search_location" /> 
    </p> 
    <p> 
    <label for="search_category">Category</label> 
    <select id="search_category" name="search_category"> 
     <?php foreach (get_job_listing_categories() as $cat) : ?> 
      <option value="<?php echo esc_attr($cat->term_id); ?>"><?php echo esc_html($cat->name); ?></option> 
     <?php endforeach; ?> 
    </select> 
    </p> 
    <p> 
    <input type="submit" value="Search" /> 
    </p> 
</form>