CSS Customization Help

If you want to contribute MediaMonkey skins, themes, icons, etc...

Moderators: Morten, Gurus

nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

CSS Customization Help

Post by nynaevelan »

Any HTML/CSS Guru I need your assistance. I am using MoDementia's Custom Properties Panel script, which uses the active Monkey Rok skin. Unfortunately, it has these text boxes which are clashing with the skin. Can you tell me how to add the necessary info to have #1 have the same color border as #3 and #2 have the same kind of arrow as #4?

Image

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: CSS Customization Help

Post by MoDementia »

Both of these work in Firefox but not on the dropdown in IE (which MM uses)
In the first one just change the "solid rgb..." to "solid yourcolour"

Code: Select all

.odd {
	background-color:rgb(184,143,98);
	color:#000000;
	border: 1px solid rgb(162,121,78);
}
.even {
	background-color:rgb(162,121,78);
	color:#000000;
	border: 1px solid rgb(184,143,98);
}

Code: Select all

.odd {
	background-color:rgb(184,143,98);
	color:#000000;
	border: 0px;
}
.even {
	background-color:rgb(162,121,78);
	color:#000000;
	border: 0px;
}
No luck with the button yet :(
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: CSS Customization Help

Post by nynaevelan »

That's kinda what I did on the right side (#3), but nothing I do will get the left side to work. :-?

Here's the code of what I have:

Code: Select all

.odd {
   background-color:#000000;
   color:#2994E7;
   border: 1px solid #6C84D9;
}
.even {
   background-color:#000000;
   color:#2994E7;
   border: 1px solid #6C84D9;
Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Re: CSS Customization Help

Post by MoDementia »

Open the Scripts\PropertiesPanel\temp.html in Firefox
It does work on the left, just not in IE :(
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: CSS Customization Help

Post by nynaevelan »

Well, now that just pisses me off!!!!! How the heck am I supposed to get around that?? There has to be a way because Gege found a way to fix the IE scrollbar issue, so there should be a way to fix this also.

So do you know any htlml code to add for that?

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
rovingcowboy
Posts: 14163
Joined: Sat Oct 25, 2003 7:57 am
Location: (Texas)
Contact:

Re: CSS Customization Help

Post by rovingcowboy »

Ie uses the form to make the box and button. you can not change it with out making the form code for buttons your self. if that is even possible in IE. you will have to open the page source code for that in front page or office which ever you have for use as ms's html coding in ie, and see if you can adjust the items you want to in there.

but i don't think your going to get it changed, all form buttons and boxes are set to use the default desktop color of gray, now i know you can add an image to the form buttons that are the buttons you click on to launch things. but the drop down arrow button i don't think you can change its image to any picture. its one of the drawbacks of useing forms in IE.
:(

now that said you might beable to go to any free javascript or free xhtml script site and get one of them to make form drop down box'es and buttons, that are controled by you. try this site for any such script.

http://www.dynamicdrive.com
roving cowboy / keith hall. My skins http://www.mediamonkey.com/forum/viewto ... =9&t=16724 for some help check on Monkey's helpful messages at http://www.mediamonkey.com/forum/viewto ... 4008#44008 MY SYSTEMS.1.Jukebox WinXp pro sp 3 version 3.5 gigabyte mb. 281 GHz amd athlon x2 240 built by me.) 2.WinXP pro sp3, vers 2.5.5 and vers 3.5 backup storage, shuttle 32a mb,734 MHz amd athlon put together by me.) 3.Dell demension, winxp pro sp3, mm3.5 spare jukebox.) 4.WinXp pro sp3, vers 3.5, dad's computer bought from computer store. )5. Samsung Galaxy A51 5G Android ) 6. amd a8-5600 apu 3.60ghz mm version 4 windows 7 pro bought from computer store.
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: CSS Customization Help

Post by nynaevelan »

Thanks, after many exhaustive searches yesterday I came to the same conclusion. It's a shame, but I guess I have to live with it. :(

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
hars
Posts: 103
Joined: Sun May 14, 2006 2:18 pm

Re: CSS Customization Help

Post by hars »

i don't know which engine mm uses but you should be able to set background color on a select element in ie7, read http://www.456bereastreet.com/archive/2 ... _controls/ or more precisely http://www.456bereastreet.com/lab/form_controls/select/
Pablo Picasso never got called an asshole. And my record collection can beat up your record collection.
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: CSS Customization Help

Post by nynaevelan »

It's not the background color I was trying to change, it was actually the frame color and arrow color. But I don't think this is possible due to the limitations of IE7. :(

Nyn
Last edited by nynaevelan on Wed Jul 16, 2008 7:03 am, edited 1 time in total.
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
hars
Posts: 103
Joined: Sun May 14, 2006 2:18 pm

Re: CSS Customization Help

Post by hars »

ah, sorry, misread, no thats not pssible.
Pablo Picasso never got called an asshole. And my record collection can beat up your record collection.
Post Reply