Link Bar

P

PapaBear

Ok, I figured out how to change the Label, but I am stuck
about how to change the size of the Button? With my web
page, if I go over 4 buttons, it drops it to another line -
- not workable?
 
J

Jim Carlock

Do you have a website link ?

I think the easiest way to change the size of a button is:

<button style="height:20px; width: 120px;">
</button>

You'll have to do this in HTML view. If you need some help
understanding HTML feel free to shoot some questions this
way and I'll be happy to help you out.

If you're using an input style button:

<input type="submit" style="height:20px; width:120px;" />

Those style="" lines are called inline style. And it's all CSS to
everyone.
 
Top