|
#1
|
|||
|
|||
|
I want a "text bigger" button.
I had a website, my weather channel I thought though it's not there now, and it had a button that controlled text size. I'm trying to make a site with a template that has small writing and I thought it would be nice to have that "make text bigger" button in there.
I know about Ctrl++ but anyone know where a script is that I could place in my site? |
|
#2
|
|||
|
|||
|
Oh, I always use Ctrl w/ mouse wheel lol, that ctrl + is a neat trick.
You might check into radio buttons, likely along the lines of a javascript, but idk... |
|
#3
|
||||
|
||||
|
Here is something I just wrote for you.
Code:
<html>
<head>
<title>Text size Control Via Javascript</title>
</head>
<script language="javascript">
function ChangeFontSize()
{
var newFontSize;
var selIndex = document.frmTextSize.ddlFontSizeSelector.selectedIndex;
newFontSize = document.frmTextSize.ddlFontSizeSelector.options[selIndex].value;
document.body.style.fontSize = newFontSize;
}
</script>
<body>
<p>Test Text!Test Text!Test Text!Test Text!Test Text!Test Text!Test Text!Test Text!Test Text!</p>
<form id="frmTextSize" name="frmTextSize">
<select id="ddlFontSizeSelector" onclick="ChangeFontSize();">
<option value="10pt">Tiny</option>
<option value="12pt" selected>Small</option>
<option value="14pt">Medium</option>
<option value="16pt">Large</option>
<option value="18pt">Huge</option>
</select>
</form>
</body>
</html>
You can view it in action here. |
|
#4
|
|||
|
|||
|
Quote:
*crosses fingers in case he's a hacker* |
|
#5
|
||||
|
||||
|
Not a hacker, Let me know if you need help integrating it into your site.
|
|
#6
|
||||
|
||||
|
__________________
200 Pages and Growing Coast Redwoods . . . Landscaping Portland & Tree Service . . . Portland Photographer |
|
#7
|
|||
|
|||
|
Quote:
Thanks for the tip topsites, i did not know that.
__________________
why i like cutting lawns so much: It's the only job i know, Where i can walk in circles and talk to myself And no one thinks i'm crazy. |
![]() |
| Bookmarks |
«
Previous Thread
|
Next Thread
»
| Thread Tools | |
| Display Modes | |
|
|












Linear Mode
