wizdom

Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Activity

  • wizdom joined the group Feedback and Planning
  • wizdom replied on the discussion topic Plugin help - how to change text color??
    Finally got it working. Thanks all for the help! the upgrade script was what I was missing. Firebug was also a nice helper, just verified what I thought from the beginning (that the style i was supposed to be editting was... view reply
  • wizdom replied on the discussion topic Plugin help - how to change text color??
    @Shouvik:  Ahhh thanks I did not know about the upgrade script. i'll go back and start trial and error again from the beginning and also give Firebug a try view reply
  • wizdom replied on the discussion topic Plugin help - how to change text color??
    Thanks for the quick responses. @patriot: How do i turn my file caches off? I looked around the admin panel but am not seeing it. There are 3 css.php files in the dark... view reply
  • wizdom added a new discussion topic Plugin help - how to change text color?? in the group Elgg Technical Support
    I installed elgg and have been having trouble trying to change the text color on widgets like "the wire" , "blog posts" etc. The problem is, the mod I'm using has a white background for those areas, but the text is also white so I can't see...
    • I haven't used the template. But in my understanding, the changes ought to take place on ./dark/views/default/css.php

      After you modify any css.php file, run the upgrade script to make the changes appear.

      Upgrade script: http://SITEURL/upgrade.php

       

      If you'd like to know the CSS classes of an element, using Firebug could be useful.

    • @Shouvik:  Ahhh thanks I did not know about the upgrade script. i'll go back and start trial and error again from the beginning and also give Firebug a try

    • Finally got it working. Thanks all for the help! the upgrade script was what I was missing. Firebug was also a nice helper, just verified what I thought from the beginning (that the style i was supposed to be editting was collapsable_box_content)

      For anyone else who may be having this same problem:

      I edited the file: ./dark/views/default/css.php 

       .collapsable_box_content {
              padding: 10px 0 10px 0;
              margin:0;
              height:auto;
      color:#fff;
              -moz-border-radius-bottomleft:8px;
              -moz-border-radius-bottomright:8px;
              -webkit-border-bottom-right-radius:8px;
              -webkit-border-bottom-left-radius:8px;
              border-left: 1px dashed #3C90B8;
              border-right: 1px dashed #3C90B8;
              border-bottom: 1px dashed #3C90B8;
      }

      I changed the color to #000000; so it now reads:

      .collapsable_box_content {
              padding: 10px 0 10px 0;
              margin:0;
              height:auto;
      color:#000000;
              -moz-border-radius-bottomleft:8px;
              -moz-border-radius-bottomright:8px;
              -webkit-border-bottom-right-radius:8px;
              -webkit-border-bottom-left-radius:8px;
              border-left: 1px dashed #3C90B8;
              border-right: 1px dashed #3C90B8;
              border-bottom: 1px dashed #3C90B8;
      }

      Then I ran the upgrade script. Text color worked.

  • wizdom joined the group Elgg Technical Support