1) When in TinyMCE 2.0 (in from front end only) Styles, Formatting and Font Family drop down boxes have invisible text (white on white)
Where do I see this?
2) Navigation buttons NEXT and LAST are invisible until mouse-over.
3) Navigation buttons NEXT and LAST have an un-needed black box surrounding both buttons
fix the above 2 items as follows:
Look in customize.css for
| Code: |
th.pagenav_prev a:link, th.pagenav_prev a:visited, th.pagenav_next a:link, th.pagenav_next a:visited {
border:1px solid #333333;
color:#FFFFFF;
padding:5px 14px;
text-decoration:none;
}
|
REPLACE WITH
| Code: |
th.pagenav_prev a:link, th.pagenav_prev a:visited, th.pagenav_next a:link, th.pagenav_next a:visited {
border:1px solid #ccc;
color:#444;
padding:5px 14px;
text-decoration:none;
}
|
LOOK FOR: customize.css (around - line 518)
| Code: |
.pagenav {
border:1px solid #333333;
|
| Code: |
remove border..."border:1px solid #333333;"
|
LOOK FOR - customize.css (around - line 547)
| Code: |
th.pagenav_prev a:link, th.pagenav_prev a:visited, th.pagenav_next a:link, th.pagenav_next a:visited {
border:1px solid #333333;
color:#FFFFFF;
padding:5px 14px;
text-decoration:none;
}
|
REPLACE WITH
| Code: |
th.pagenav_prev a:link, th.pagenav_prev a:visited, th.pagenav_next a:link, th.pagenav_next a:visited {
color:#444;
padding:5px 14px;
text-decoration:none;
}
|
4) <hr> lines do not show up in articles
I dont see where the problem is but try this
LOOK FOR
| Code: |
hr {
border: none;
height: 1px;
margin: 10px 0;
}
|
REPLACE WITH
| Code: |
hr {
border: 1PX SOLID #444;
height: 1px;
margin: 10px 0;
}
|
5) Text typed into the user name and password are invisible
I dont see this behavior at all.... All inputs work fine for me.
If you let us know about the other ones, we can take a look for you and get them fixed. We will also apply these fixes to the download.
Cheers,
Andy