Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

The Basic Mistakes Most Theme Makers Do

$
0
0
Hello,

This thread is about the mistakes and things-you-forget to do while making myBB themes.

I am making this thread, because I have seen MOST of you do forget to cover up some theme areas.

1. The input fields at Registration page:

At the registration page, If the fields are correct, the textbox class is changed to:
PHP Code:
/* For invalid input */
.invalid_field {
}
/* For valid input */
.valid_field {


So your input.textbox CSS fails here. And you see something as in this pic:

[Image: fyiccbX.png]

How to fix?
Cover up .invalid_field, .valid_field in your CSS as another textbox class.
Or,
Use:
Code:
input[type="text"] {}

2. The Backgrounds of selected TROWS
PHP Code:
.trow_shaded {
}
.
trow_selected td {


This is mostly needed to be covered in case of Dark themes.
These may represent un-matched color in your theme if you forget to edit these.

How to fix?
Just change the backgrounds as per your need for the above classes.

------------------

That's all for now. I will add more soon.

Viewing all articles
Browse latest Browse all 690

Trending Articles