For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Hey guys im trying to setup my guestbook and its taking the styling from the CSS on the site for the submit button, is there anyway i can get it to either a) stop doing this? or b) change the guestbook to use its own button?
use .cms-guestbook-showform-button input[type="submit"].cms_submit as you styled your buttons with input[type="submit"] means you have to override it with above which also means that guestbook css should be included in stylesheet after default button/input style.
Ok i think im getting there now LOL (i really appreciate your help!)
How do i override something in CSS? Now, the thing is, i want to keep the button styling on all the buttons throughout the site, so for example, the guestbook puts its own button in, which is different from the buttons on the contact page.
/* assuming input inside a element with class .mystyle */
.mystyle input{
something;
}
/* now i want to override that default style on another input element that is also inside .mystyle element but has also own class like .submit */
.mystyle input.submit {
do something else;
}