On Wednesday 01 February 2017 14:34:48 Alice Wonder wrote:> > Use CSS to set the button size. >What I'm looking for is how do I fix the web browser, not how do I fix my web pages. To go down the CSS route means that I'll have to amend every CSS / HTML to fix the problem. It then doesn't fix the problems I have if I visit other people's web pages, although to be fare I don't notice it so much on other people's web pages. It still doesn't explain why it's only Firefox on Linux, and what Firefox have changed to cause it in the first place. As an aside, I have tried using CSS to reset the size of the buttons but haven't found a satisfactory effect. I had problems with the contents not being centred after the size was changed.
On Wed, 2017-02-01 at 14:41 +0000, Gary Stainburn wrote:> To go down the CSS route means that I'll have to amend every CSS / > HTML to fix the problem.The idea is to use one .css file for entire web sites, or large divisions of a single web site. You could see if a Firefox plug-in can help. Could it be something in "<!DOCTYPE HTML PUBLIC" ? My layout.css.devPixelsPerPx is -1.0 on FF45.7.0 (yes I will change to C6 before July) and I do not have a button problem. My customised buttons are described like this ... .aaa {position:absolute; left:930px; top:123px; white-space:nowrap;} .aaa :link, .aaa :visited {background:#ffffff; margin:0; padding:2px 8px 3px 9px; color:#7777d0; text-align:center; font-size:17px; font-weight:bold; text-decoration:none; border-top: 3px solid #eeeeff; border-right: 5px solid #ccccdd; border-bottom: 3px solid #ccccdd; border-left: 6px solid #d0d0e0; } .aaa :hover {background:#ff0000; color:#ffffff; padding:2px 8px 3px 9px; text-decoration:none; border-top: 2px solid #ff6666; border-right: 5px solid #dd0000; border-bottom: 3px solid #ee0000; border-left: 6px solid #dd0000; } -- Regards, Paul. England, EU. England's place is in the European Union.
On Friday 03 February 2017 19:40:37 Always Learning wrote:> On Wed, 2017-02-01 at 14:41 +0000, Gary Stainburn wrote: > > To go down the CSS route means that I'll have to amend every CSS / > > HTML to fix the problem. > > The idea is to use one .css file for entire web sites, or large > divisions of a single web site. >Hi Paul, I do do that, but I have quite a few web sites that I maintain, both for work and personally. I'm currently sitting in the glow of a freshly installed workstation after having to replace the HDD, and a number of problems that I have been experiencing, including the over-sized buttons have all gone away. Thank you for the CSS. I'll have a look at that in relation to my existing CSS and see if that helps. On the plus side, the research I've been doing for this problem has shown me some better practices that I will try to utilise.