====== Front Pages Changes in Default Design ====== ======Change Rotating Images Top Right of Search Box====== These instructions deal with the area in the red circle of the screenshot below: {{:startup_tutorial_and_checklist:design_configuration:specific_html_elements:full_front_page_top_rotate_images.png}} To change the slideshow images next to the search box of the front page of the default design you will need to edit the following template: /main_page/front_page.tpl of your custom template set. Open the html source view of the above template within following admin tool: DESIGN > MANAGER Search for the following html tag:
( you can search for "gj_image_fade") You'll see a section of code something like this one:
You see the images used in that slideshow in the code above. You have a couple of options: - upload images named the same way as above to the same location within your custom template set - upload your own images to your site and manually change the above code to reference them. By default the above mentioned image are within the following directory of your custom template set: /external/images/showcase_slideshow/ Make sure your images are the same size as the current images or you may need to adjust your html source code to match their size. If not you'll need to adjust the css/html to accommodate. The default images are 250 pixels width by 140 pixels height. ====== Edit the "for sale" section in the left column ====== These instructions deal with the area in the red circle of the screenshot below: {{:startup_tutorial_and_checklist:design_configuration:specific_html_elements:for_sale_front_page.png}} To change the above shown area of the default design you will need to edit the following template: /main_page/front_page.tpl of your custom template set. Open the html source view of the above template within following admin tool: DESIGN > MANAGER Search for the following html comments: The html used to create the above section is between those two comment tags. ===== Car Background Image ===== Changing the "car image background is a matter of changing the css to point to an image of your choosing in the css or upload your image over the current image (with the same file name and location) within your custom template set. If you just want to overwrite the current image there without needing to change the css to point to a new file you would upload the file name exactly as: car_silhouette.png You need to use the same file type and suggest relatively the same dimensions of 122 pixels wide by 70 pixels tall. You would upload that image into the following directory of your **custom template set** within the following directory: /external/images/backgrounds/car_silhouette.png If you wish to change the css to point to your own custom image you should still upload your image to the same location in your custom template set: /external/images/backgrounds/ and then change the css to point to that image. The css to edit is the following: .content_box.showcase .forsale_text { background: url('../images/backgrounds/car_silhouette.png') no-repeat left top; } In the default.css file. But note that you can't edit the default.css file as that file will be overwritten with the next version update. You will need to follow the [[startup_tutorial_and_checklist:design_configuration:editing_css:editing_custom_css|instructions to edit css within your custom.css file]] to copy the above to your custom.css and make the changes there. For example if your new image file was named: some_new_image.jpg and uploaded to the same directory the current background image is in the above css in the default.css would become the following in your custom.css file: .content_box.showcase .forsale_text { background: url('../images/backgrounds/some_new_image.jpg') no-repeat left top; } **If you want to remove the use of that background image altogether** you would edit that default css within your custom.css file to something like this: .content_box.showcase .forsale_text { background: none; } ====== Links on the right side below the rotating images ====== These instructions deal with the area in the red circle of the screenshot below: {{:startup_tutorial_and_checklist:design_configuration:specific_html_elements:front_page_right_side_links.png}} To change the above shown area of the default design you will need to edit the following template: /main_page/front_page.tpl of your custom template set. Open the html source view of the above template within following admin tool: DESIGN > MANAGER Search for the following html comments: ====== Search box in the top middle of the front page ====== These instructions deal with the area in the red circle of the screenshot below: {{:startup_tutorial_and_checklist:design_configuration:specific_html_elements:front_page_search_box.png}} To change the above shown area of the default design you will need to edit the following template: /main_page/front_page.tpl of your custom template set. Open the html source view of the above template within following admin tool: DESIGN > MANAGER Search for the following html comments:

What are you Looking For?

{if $enabledAddons.zipsearch}
Within   of 
{/if}

      Advanced Search
To change "zip code" to "post code" or something else change "Zip Code" in the placeholder attribute here: To change the title of the form change the following code:

What are you Looking For?

To change the "search keywords..." inside the search text box you only need to change that text in the placeholder attribute of this text: ===== Set Search Form To Consider Current Region Selection ===== The search box on the front page by default searches the complete site by design irrespective of current region selected. But if you wish you can make the software include that as a criteria within that search form automatically. You would only need to insert the following line into the above html form: Just insert it anywhere after the opening form tag (
) and before the closing form tag (
) ====== The Scrolling Featured Box Top Left ====== This section deals with the scrolling featured listing display in the top left of the front page and shown in this screenshot: {{:startup_tutorial_and_checklist:design_configuration:specific_html_elements:front_page_top_left_featured.png}} To change the above shown area of the default design you will need to edit the following template: /main_page/front_page.tpl of your custom template set. Open the html source view of the above template within following admin tool: DESIGN > MANAGER For the html that affects that whole box look for the following html comment tags: The html that affects that is between those two tags. We would also like to not that you can pass some values you set in the admin tool for a specific module directly through the module placement tag. To illustrate we've done just that with this top left featured module display. Though the featured pic 1 module is set by default to display 4 columns in the admin tool that specific placement of that module displays 1 column because that is part of the data we pass through that tag. You can easily see in the following code: {module tag='module_featured_pic_1' module_number_of_columns=1 module_thumb_width=196 module_thumb_height=200 module_number_of_ads_to_display=10} You'll see that we set these parameters that you would by default set within the featured pic 1 module's admin tool. * module_number_of_columns=1 * module_thumb_width=196 * module_thumb_height=200 * module_number_of_ads_to_display=10 While the featured pic modules have the same configuration values other modules may be different so check the code or check with us. This specific feature allows you any number of instances for one or many modules throughout your site without ever running out of modules to place.