Before you ask please READ THIS

Background Description Area in Albums

edited December 2012 in Hypershot Posts: 29
Hi, can I change the color/darkness of the description area in the album in the backend?

Comments

  • AirAir
    Posts: 10,970
    Nope, you will have to do it by CSS. If you need help use firebug or ask here;-)

    With regards.
  • Could you please tell me, what style it is to change?
  • AirAir
    Posts: 10,970
    Add this custom CSS
    #slide-text {
    background-color: rgba(0, 0, 255, 0.5);
    }
    Have fun;-)
  • Hi,

    Just to add to this, how can I change the background to a solid white with black text?

    Thanks!
  • AirAir
    Posts: 10,970
    Add this custom CSS
    #slide-text {
    background-color: #ffffff;
    color: #000000;
    }
    #slide-text .caption {
    color: #000000;
    }
    With regards.
  • Thanks Air however this code doesn't change the background pattern to a solid color ie. the pattern still exists. Any idea how to change it to a solid color?
  • AirAir
    Posts: 10,970
    Then change part of above CSS to:

    #slide-text {
    background: none #ffffff;
    color: #000000;
    }
    With regards.
Sign In or Register to comment.