Search…

X3 Photo Gallery Support Forums

Search…
 
dbk123
Topic Author
Posts: 22
Joined: 14 Jan 2009, 20:47

Contact form - disappearing Send Button

31 Jan 2009, 20:47

I recently setup a contact form on my website. However, when viewed on a lower resolution monitor, the Send button isn't appearing. It seems as though things are not being resized correctly.

Any ideas?

-Dave
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

01 Feb 2009, 00:20

Do you have a link? Seems like you have a textpage with a lot of text ... You were perhaps not aware that a scrollbar appears on the right of your textpage? It may be a little hard to see depending on what theme you are using ... There is a theme setting to change the color of your scrollbar -> textpage.background.scrollbar_color
 
dbk123
Topic Author
Posts: 22
Joined: 14 Jan 2009, 20:47

Disappearing send button

01 Feb 2009, 08:36

mjau-mjau wrote:Do you have a link? Seems like you have a textpage with a lot of text ... You were perhaps not aware that a scrollbar appears on the right of your textpage? It may be a little hard to see depending on what theme you are using ... There is a theme setting to change the color of your scrollbar -> textpage.background.scrollbar_color
Here is a link to the contact form: http://www.davekynor.com/gallery/#/content/textpage/

Ah yes, I now see the second scrollbar (I knew about the in the message field, but not the one that allowed scrolling of the entire contents of the page). Pretty cool.

I think I will be reduce the logo size, and reduce some of the text to help eliminate this problem.

Is there a way to eliminate display of the page title ("Contact Me" on my site) to free up the space that this takes?

Thanks,

-Dave
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Disappearing send button

01 Feb 2009, 22:44

dbk123 wrote:Is there a way to eliminate display of the page title ("Contact Me" on my site) to free up the space that this takes?
You can either reduce the font-size, or eliminate it entirely. Just keep in mind this will affect the heading in any of your other textpages(Although I see you don't have any others as of yet).

To do so, go to admin -> themes -> edit your theme -> edit theme styelsheet - From there, locate the class:
Code
.textpage_title{
	font-size: 30px;
	leading: 8px;
	color: #66CCFF;
	font-style: normal;
}
You can reduce the font-size, or you can hide the text entirely by setting:
Code
.textpage_title{
	display: none;
}
Remember to clear your browser cache after changing the CSS file.
 
dbk123
Topic Author
Posts: 22
Joined: 14 Jan 2009, 20:47

Thanks again

02 Feb 2009, 20:00

Great! Thanks!

I do have a request for the next version - it might be a good idea to make the Contact form a bit more compact by reducing the space used for the border and the size of the message box.

-Dave
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

02 Feb 2009, 20:10

I don't wanna make the contact form too small either, or you can be sure we will be getting requests to make it bigger. As for the 'border', do you mean the textpage padding? That can be reduced in the theme editor ...