Jump to content

Change CSS???


Warptweet

Recommended Posts

Pretend I have a form with the following:

Background Color:
Text Color:

And when I submit the form, what would I use to CHANGE the style.css background color and text color the the HEX codes that I typed in?
For instance, if I changed the Background Color to 000000 and the Text Color to FFFFFF, how would I make the CSS style.css change those properties?

This is kind of a css/php matter, so I understand if this is hard.
Link to comment
https://forums.phpfreaks.com/topic/35051-change-css/
Share on other sites

I'm not really sure about what you're trying to do but if you want to change the background of the input and the color of the input's text, use this:

[code]input { background-color#000000;
          color: #FFFFFF;
}[/code]

You shouldn't need to add a class to your input tags.
Link to comment
https://forums.phpfreaks.com/topic/35051-change-css/#findComment-165437
Share on other sites

This will write the actual new file.
I've done this before, and I've always had to refresh the browser make it kick in.

[code]<?
//include_once(me?)
//******** styleWrite.php [ ?col=336699 ]
// look for this file to be written:
$newFilename='styles.css';

$content='body{background-color:#'.$_GET['col'].';}';

$loc=$_SERVER['DOCUMENT_ROOT'].'/'.$newFilename;

if( ($copy=fopen($loc,'w')) != FALSE)
{
fwrite($copy,$content);
fclose($copy);
$message= "I think i got it" . $loc;
echo $content;
}
else $message= "couldnt open destination file";
echo "<!-- " .$message." -->";


?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/35051-change-css/#findComment-165492
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.