Recent Topics

1 Feb 20, 2006 00:26    

Hi,

I'm trying to modify the search buttons of the "Melbourne" skin. I want to let them look like the buttons in the "custom" skin, because I like them better.

I Tried everything but I cannot do it. Can you please help?
I tried modifying the melbourne.css file, the _main.php file and so on.

I hope somebody knows the answer.

Cheers,
Robert

2 Feb 22, 2006 05:44

If you can post your code-changes, somebody would definitely be able to help rather than trying to speculate just like what I'm doing now... hope this helps.

"Melbourne" skin doesn't use css to format its 'search' button. Here's the css code for the 'search' button in custom.css:-

input.submit,
input.reset {
	background-color: #ddd;
	color: #78a;
	border: 1px solid #000;
	font-weight: bold;
	padding: 1px;
}

input.submit:hover {
	color: #000;
	text-decoration: underline;
}

You must use class="submit" in your skins/melbourne/_main.php:-

<input type="submit" name="submit" class="submit" value="<?php echo T_('Search') ?>" />


Form is loading...