Author Topic: [Fix] Edit Video- Font Color  (Read 2282 times)

picvids

  • V3 Beta Tester
  • Sr. Member
  • *
  • Posts: 175
    • Solid Rock Tube
[Fix] Edit Video- Font Color
« on: February 12, 2009, 11:39:49 PM »
Hi

I went to edit a video in the member area and the font color is white so it does not show. I know the css coders to change it but what file would need to be edited to correct this? This is in the Elements True Blue Theme

Thanks


Attached is the fix. For those having the same issue.

Please Note: The attached is for a unmodified main.css. Use at you own risk. Make a backup copy of the orginal file and place in the templates directory.


If you rather not use the attachment please see the third post for the edit
« Last Edit: February 13, 2009, 11:16:10 AM by picvids »

sbcjr

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 6209
  • I ♥ PHPmotion
    • PHPmotion Mods
Re: Edit Video Font Color
« Reply #1 on: February 13, 2009, 08:17:27 AM »
I don't have elements, so I can't really answer your question, but try using firebug in Firefox- you can find out where to change almost anything with it.

picvids

  • V3 Beta Tester
  • Sr. Member
  • *
  • Posts: 175
    • Solid Rock Tube
Re: Edit Video Font Color
« Reply #2 on: February 13, 2009, 09:27:03 AM »
Fixed it!

open main.css in the template directory

find

Code: [Select]
  color: #fff;
background-color: #fff;
border: 2px solid #666666;
text-align:left;
height: 590px;
margin-right: auto;
margin-left: auto;
width: 680px;
margin-top: 0px;
}



replace with

 
Code: [Select]
#EditVideo{
    color: #000000;
background-color: #fff;
border: 2px solid #666666;
text-align:left;
height: 590px;
margin-right: auto;
margin-left: auto;
width: 680px;
margin-top: 0px;
}

I use Google Chrome to find the frame source


Thanks! sbcjr for the suggestion on where to find the souce for that fix

« Last Edit: February 13, 2009, 11:14:53 AM by picvids »

sbcjr

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 6209
  • I ♥ PHPmotion
    • PHPmotion Mods
Re: Edit Video Font Color
« Reply #3 on: February 13, 2009, 09:27:55 AM »
Great!