Elxis CMS Forum

Support => General => Topic started by: armpouniotis on January 23, 2013, 00:25:48

Title: Contact Form white border
Post by: armpouniotis on January 23, 2013, 00:25:48
Hi there !

in Elxis Nautilus, in the contact form there is a white border. How can I take this off ? Or at least change its color ???

Thank you advance
Christos
Title: Re: Contact Form white border
Post by: datahell on January 23, 2013, 19:25:59
No, elxis form's default css does not uses any white border around the form...

The contact plugin draws a form with the class "elx_form". You can change the style of any form element by making modifications or additions in your template's css file.
The elements and the css classes used in that form are listed below. From what you said you should focus on the form and the fieldset tags.

<form class="elx_form">
<fieldset class="elx_form_fieldset">
<legend class="elx_form_legend">
<div class="elx_form_row">
<label class="elx_form_label">
<input  class="inputbox">
<select class="selectbox">
<textarea  class="textbox">
<button class="elxbutton-save">

To overwrite or set a css rule write at the very bottom of your template's css file something like that:
fieldset.elx_form_fieldset { border:1px solid red; }

If you need more help post a link.
Title: Re: Contact Form white border
Post by: armpouniotis on January 24, 2013, 14:19:03
thank very much for your information !

Christos