CSS
Fluid Image Widths using CSS
In CSS file: max-width: 100%; Images smaller than the available space will be untouched whereas images bigger than the available space will be scaled
Read MoreSpecific CSS Styling for iPad
@media only screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-min-device-pixel-ratio: 1) { #background img { display: none; } }
Read MoreDrop down menus behind content in IE7
Symptom: Dropdown menus appear behind content in the div below even if z index is set higher. Conditions: CSS based dropdown menus viewed in IE7 Solution: This occurs when the div containing the menu is separate from the div containing the content below. IE7 resets the z index for the separate divs. Adding “position: relative;”…
Read MoreRemove >> before list items in Sidebar
In style.css comment out this statement .entry ul li:before, #sidebar ul ul li:before { content: “0BB 020”; }
Read MoreAdd Styles to Admin Editor (TinyMCE)
Add to functions.php add_editor_style(); Create editor-style.css in theme folder
Read More