Advanced Search
Search Results
17 total results found
How do I identify the stylesheets in Plone?
In Plone, you can list, debug, enable and disable and change the order of all the stylesheets by: go into ZMI (Zope Management Interface) go to Root Folder of your site click on portal_css (CSS Registry). There you’ll see a long list of all the CSS’s affecting...
How do I remove the icons in Plone?
This will allow you to remove the navigation icons that appear in Plone’s navigation portlet. go into ZMI (Zope Management Interface) go to Root Folder of your site click on portal_css (CSS Registry). There you’ll see a long list of all the CSSes affecting you...
Why can't I make a copy of a Movie DVD?
Most DVDs have two issues preventing you from making a copy of a DVD:1) DVDs are encrypted with a measure called CSS, Content Scrambling System. CSS prevents people from copying movie files to their computers and from burning these files to a DVD.2) Movie DVD...
Learning about CSS
CSS, or Cascading Style Sheets, have taken over the design end of websites, it seems. I’m not that good with them yet, so I’m starting to collect useful CSS Links. http://css.maxdesign.com.au/ – Great site to learn CSS. Straightforward to find available topic...
What sort of menus can I make with CSS?
There are practically no limits to what you can do with CSS, the trick is figuring out how to make it do what you want! Or another way of looking at it is: what sort of ideas can you come up with to use CSS in a new (and hopefully useful) way?Here are just a f...
Web Development Standards - Best Practices
For better or for worse, everyone developing web sites at UCLA abides by different rules. For those of us who build for public consumption, what are the best practices — considerate of time and maintenance limitations — to get a little closer to building bette...
How to get rounded corners on web pages
The traditional way to get pretty-looking corners for all your tables (and divs, and menus, and whatnot) used to involve setting a background image to the table or other element. While simple, this is a very inflexible solution. It is completely dependent on t...
What to do when CSS stylesheets refuse to apply
There are a number of common mistakes users make when writing CSS stylesheets that are difficult to debug. Because browsers differ in how picky they are about errors, pages may look fine in some browsers but wrong in others. A common symptom of these problems ...
a:visited property not working in Firefox, but working in IE
When the a:visited property is customized to use a certain property (i.e., change its color when a link has been visited) with CSS you may experience the following scenario:Let’s assume you’ve set the following property for visited links in your CSS.a:visited ...
The importance of "!important" in CSS
Normally, CSS works by having the most recently-declared rule take precedence. However, this isn’t always the case. Rules can be followed by the expression “!important” to give them precedence over later rules.This can come up a lot in systems like Plone, wher...
CSS Design Concerns for IE6, IE7, and Firefox
Below is the beginning of (hopefully) an ongoing collection of design-related CSS issues concerning different browsers. For this initial posting, I focus on Firefox, IE6, and IE7.The good news regarding IE7 is that a lot of bugs were fixed. See the following...
Should I use plonecustom.css when changing the layout for my Plone site
As stated in plonecustom.css, if you are going to be making heavy modifications to your layout, you should modify each CSS file accordingly (base.css, portlets.css, etc.).plonecustom.css can be used for light modifications or any custom classes and id’s you ...
How can I get standard cross browser font-sizes?
A short while ago I was overjoyed to rediscover an article that I lost track of long ago. I read a book endorsing the classic ALA Keyword Approach, but figured I’d follow up on the research a bit further, as I had an inkling that using a % in the body and em...
The advantages of Javascript
IntroductionJavascript is a browser-interpreted language that was created to access all elements of HTML and the browser. The processing is done entirely by the client-side browser which makes it very useful tool to handle processing which would have otherwis...
What's a solid starting point (global reset) for a CSS file?
Browsers often have different ways of rendering the same element. For example we expect lists to be left-indented. Firefox does this by applying a left padding of 40 pixels to an unordered list (<ul>). Either Opera or Internet Explorer acheives the sam...
Stanford Self-Help Web Design Resources
Stanford Self-help Web Design Resources http://itservices.stanford.edu/service/web/design Templates & Themes HTML & CSS Style Guide Accessibility Graphics & Art
Sass versus LESS
Quoting, "One of the hot new trends in web design is CSS pre-processed languages and there’s two big ones vying for your attention—LESS and Sass. LESS and Sass are both ways of writing CSS code with a syntax that allows you to use features not yet available wi...