Helping a family friend with a website, and no genius or competent individual in CSS, so a little help would be very appreciated...
Site is using Wordpress, and what I need to do is make the CSS compatibale between several major browsing engines... IE alias Trident, Gecko alias Mozilla, and Webkit alias Google/Safari.
Site, I am working on...
Karen Keller
Code:
/*
File: custom.css
Description: Custom styles for Thesis
BASIC USAGE:
If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag
will be appended with the "custom" class, like so: <body class="custom">. You can use
the "custom" class to override *any* CSS declarations contained in the style.css file.
For example, if you wish to change the default link color to green, you would add the
following declarations to this file:
.custom a, .custom a:visited { color: #090; } <--- This makes links green
.custom a:hover { color: #00f; } <--- This makes links blue when you mouse over them
WHY THIS WORKS:
By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!
More information about styling your Thesis installation using this file can be found
in the User's Guide:
http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
.custom #page {margin:0; padding:0; background: url(images/page-bkg.jpg) repeat-y; }
.custom #header {border-bottom: 0; padding: 22px 0; margin: 2px 0 -8px 0; margin-top: 0px; margin-left: 8px; display: inline-block; height: 10px; width: 212px; background: url(http://karen-keller.com/wp-content/themes/thesis_16/custom/images/logo-temp.jpg) top 10px no-repeat; float:left; }
.custom .menu { margin-left: 221px; margin-top: 0px;}
.custom .menu a { text-transform:none; }
.custom .menu li {height: 57px; padding: 0.0em 0.02em; font-size: 12px;}
.custom .menu li a {padding-top: 16px; height: 30px; letter-spacing: .08em;}
.custom .menu .tab {margin-right: 0.1em; }
.custom #feature_box {
border-bottom:0;
background: #72A0FF;
height: 300px;
border:0; padding:0;
}
.custom .sidebar_list {
padding: 0;
margin: 0;
}
.custom #subscriptions {
background: #72A0FF;
height: 260px;
width: 241px;
padding: 20px;
}
.custom .widget_text {padding-left: 20px;}
.custom .sidebar .sidebar_list {
padding: 0;
}
left: 20px;}
custom .sidebar .sidebar_list {
padding: 0;
}
left: 20px;}
}
custom .sidebar .sidebar_list {
padding: 0;
}
left: 20px;}
}
left: 20px;}
}
custom .sidebar .sidebar_list {
padding: 0;
}
left: 20px;}
So...any clues on how to make it compatible, and to keep the look of the website aligned on I.E. 8?
Don't worry about the slide shows... it is the alignment of the nav bar that I need help with.