Remove homelink logo from the Custom Corner footer

Re: Remove homelink logo from the Custom Corner footer

by Krishny Jeyakumaran -
Number of replies: 0

I went to Custom corner theme, user_stylesheet.css.

I found

div#footer div.bt div {
  background-image: url(pix/beige_box.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: transparent;
  height: 12px;
  left: -13px;
  position: relative;
  width: 13px;
}
div#footer div.bt {
  background-image: url(pix/beige_box.png);
  background-repeat: no-repeat;
  background-position: 100% 0;
  margin: 0 0 0 13px;
  height: 12px;
  background-color: transparent;
  text-align: left;
}
div#footer div.i1 {
  background-image: url(pix/beige_borders.png);
  background-repeat: repeat-y;
  background-position: 0 0;
  background-color: transparent;
  padding: 0 0 0 12px;
}
div#footer div.i2 {
  background-image: url(pix/beige_borders.png);
  background-repeat: repeat-y;
  background-attachment: scroll;
  background-position: 100% 0;
  background-color: transparent;
  padding: 0 12px 0 0;
}
div#footer div.i3 {
  background-color: #f1ece6;
  padding: 0 10px;
  border-width: 1px 0;
  border-style: solid;
  border-color: #f1ece6;
}
div#footer div.bb div {
  background-image: url(pix/beige_box.png);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-color: transparent;
  height: 12px;
  left: -13px;
  position: relative;
  width: 13px;
}
div#footer div.bb {
  background-image: url(pix/beige_box.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  margin: 0 0 0 13px;
  height: 12px;
  background-color: transparent;
  text-align: left;

where do i make the changes?

or do i make changes to the following

div.homelink {
  margin: 2px 0 0;
  padding: 0;
}
div.logininfo {
  white-space: nowrap;
}

div#footer {
  font-size: 0.75em;
  padding: 0;
  margin: 5px auto;
  border-style: none;
}

I am lost sad