CSS editing in Version 2

chasejoynt / 2012-10-14 00:53:46   

Hey I am used to using firebug, editing a css style and then replacing the style.css file in FTP. I am having trouble editing with the new CSS in version 2.

I tried copying and pasting into the CSS form in indexhibit -> preferences -> assets -> style.css but its not working

I basically want to use these parameters for my site but don't know how to input them: Help?

* {
    margin: 0;
    padding: 0;
}
body {
    background: none repeat scroll 0 0 #FFFFFF;
    font-family: Arial,sans-serif;
    font-size: 11px;
}
body.section-1 {

}
body.section-2 {

}
body.section-3 {

}
a:link {
    color: #333333;
    text-decoration: none;
}
a:active {
    text-decoration: none;
}
a:visited {
    color: #333333;
    text-decoration: none;
}
a:hover {
    background: none repeat scroll 0 0 #46C7C7;
    color: #000000;
    text-decoration: none;
}
a img {
    border: medium none;
}
#menu {
    background-color: #FFFFFF;
    bottom: 0;
    height: 100%;
    line-height: 2.8em;
    overflow: auto;
    padding: 0 30px;
    position: fixed;
    text-align: right;
    top: 0;
    width: 171px;
    margin: 30px 0 0 0;
}
#menu ul {
    list-style: none outside none;
}
#menu ul li.section-title {
    border-bottom: 1px hidden #808080;
    font-weight: bold;
    line-height: 2.8em;
    text-decoration: none;
    color: #46C7C7;
}
#content {
    height: 100%;
    margin: 50px 0 0 252px;
    top: 0;
}
.container {
    padding: 30px 5px;
}
#content p {
    margin-bottom: 9px;
    width: 800px;
}
p {
    margin: 0 0 9px;
}
h1 {
    font-size: 32px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 16px;
}
h4 {
    font-size: 12px;
}
#img-container {
    margin: 0;
    padding: 0;
}
#img-container p {
    margin: 0;
    padding: 0 0 12px;
    width: 400px;
}
#once {
    clear: left;
}

arsondpi / 2012-10-14 08:56:05   

...there are a few css selectors that have changed name in v2.
For example #menu is now #index, #content is #exhibit etc...

This thread has been closed, thank you.