Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.