MyBB Community Forums

Full Version: weird problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi guys Smile

in the pic below i want all my boxes to have a black border with rounded edges like the "description" box.. the registration form on my forum has them like the description box but why is the forms here in my ezgallery section not changed?

Same for the "Browse" button to, the rest of my site form buttons have changed to the style i want but not in this section?

[attachment=24088]

thanks Smile
ok ive managed to get the title & keywords boxes with a black border, but its not rounded like the description box?
ok pretty much done, just need help with the "Browse" button please Sad want to make it a hover button like the rest on my site?
i think this is the code for the text field which is to the left of the button?:

<tr class="trow2">
<td align="right" valign="top"><b>Upload Picture:</b>&nbsp;</td>
<td><input type="file" size="48" name="picture" /><br />Max width 1024 pixels<br />Max height 1024 pixels
</td>
</tr>
may be you can add the required style for button in the global.css

button, 
input[type="file"]{ 

...
.......
...........
}
ok i did:

button,
input[type="file"] {
        padding: 2px;
	cursor: pointer;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	background: #385a48;
	color: #ffffff;
}

but just adds the style to the text field to the left of the button, button remains unchanged Sad ?