What Do You Need In The Xf2 Xengallery Version? Vote for your choices here: http://www.sonnb.com/threads/what-do-you-need-in-the-xf2-xengallery-version.1539/

Question Colour Of Text In Exif Popup Window

Discussion in 'XenGallery' started by snoopy5, Aug 31, 2013.

  1. snoopy5

    snoopy5 Authorized Member Authorized

    Hi

    I just upgraded to 1.017 fix 1. In the popup window of the Exif informatio, the text colour is in black and I would like to cahnge that to another colour. To which colour area of XF in ACP it is linked to?

    Thanks
     
  2. sonnb

    sonnb Administrator Staff Member

    It is black from beginning. It is not available to edit in Style Properties yet. But you could change it by adding following CSS to extra.css

    HTML:
    .photo-data table tr th, .photo-data table tr td {
    color: {YOUR_COLOR}
    }
     
  3. snoopy5

    snoopy5 Authorized Member Authorized

    Hi

    that does not work. I inserted in extra.css

    Code:
    .photo-data table tr th, .photo-data table tr td {
    color: {#cccccc}
    }
    But nothing changes...

    Do I need to regenerate something for the changes to take affect?
     
  4. sonnb

    sonnb Administrator Staff Member

    it should be: color: #CCC;
     
  5. sonnb

    sonnb Administrator Staff Member

    Code:
    .photo-data table tr th, .photo-data table tr td {
    color: #cccccc
    }
     
  6. snoopy5

    snoopy5 Authorized Member Authorized

    No,

    Code:
    .photo-data table tr th, .photo-data table tr td {
    color: #CCC;
    }
    does not work neither. I will send you the link via PM...
     
  7. sonnb

    sonnb Administrator Staff Member

    Seem that extra.css is not being loaded. Please edit following template: sonnb_xengallery_photo_exif.css

    Change existing property:
    Code:
    .photo-data table th, .photo-data table td {
        border-bottom: 1px solid #EEEEEE;
        color: #000000;
        font-size: 12px;
        padding: 5px;
    }
     
  8. snoopy5

    snoopy5 Authorized Member Authorized


    o.k., that works.

    Do I need to change this after every upgrade?

    Another problem:

    In Album/photo view:

    There are blue arrows, blue username and black titles on the right side for "privacy", "additional information" etc.

    I do not find anything in ACP for this to change the colours. How can I change them?

    Thanks
     
  9. sonnb

    sonnb Administrator Staff Member

    No you don't. but if there is any update in that template, you might need to revert and change again.

    For black title, it is:
    Code:
    .commentContainer .commentControls h4 {
        border-bottom: 1px solid #EEEEEE;
        color: #222222;
        font-size: 14px;
        margin: 20px -5px 6px;
        padding: 0 5px 6px;
    }
    in sonnb_xengallery_photo_view.css

    For blue arrow, it is in styles/sonnb/XenGallery/related-sprite.png
     
    snoopy5 likes this.

Share This Page