alexyay Posted October 27, 2015 Report Share Posted October 27, 2015 (edited) A quick, easy fix - install the Greasemonkey (Firefox) or Tampermonkey (Chrome) extensions, make a new script and copy and paste the following: // ==UserScript== // @name AquariumWorld // @namespace http://aquariumworld.nz/ // @version 0.1 // @description Changes forum post styles // @author You // @match http://aquariumworld.nz/* // @grant none // ==/UserScript== function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle('.ipsBox:not( .ipsBox_transparent ) { background-color: #FFF; border-style: solid; border-color: black; border-width: 1px; }');It doesn't look lovely, but it'll add a small black border around each post, so you can see where they start and finish (personally I don't have any issues with the theme, so I've not bothered to make it look nice, lol). Edited October 27, 2015 by alexyay livingart 1 Quote Link to comment Share on other sites More sharing options...
Silverdollarboy2 Posted October 27, 2015 Report Share Posted October 27, 2015 I can not see signatures. I have see others signatures on. Quote Link to comment Share on other sites More sharing options...
Caryl Posted October 27, 2015 Author Report Share Posted October 27, 2015 Thank you for the suggestion Alexyay. I would do what you suggest if I understood it! Quote Link to comment Share on other sites More sharing options...
alexyay Posted October 27, 2015 Report Share Posted October 27, 2015 They're genuinely the only 3 instructions - are you on Chrome or Firefox? Quote Link to comment Share on other sites More sharing options...
Caryl Posted October 27, 2015 Author Report Share Posted October 27, 2015 I have both. I will wait until my husband gets home as he will understand Quote Link to comment Share on other sites More sharing options...
livingart Posted October 27, 2015 Report Share Posted October 27, 2015 Yep just copy and paste works, thanks Quote Link to comment Share on other sites More sharing options...
Adrienne Posted October 28, 2015 Report Share Posted October 28, 2015 I can not see signatures. I have see others signatures on.Can you see mine? Asking because I know I have updated mine Quote Link to comment Share on other sites More sharing options...
Caryl Posted October 28, 2015 Author Report Share Posted October 28, 2015 I also wonder if Silverdollarboy2 can see his messages as he has yet to reply to one I sent him the other day! Quote Link to comment Share on other sites More sharing options...
livingart Posted October 28, 2015 Report Share Posted October 28, 2015 He has taken a while to reply to all mine, his dad and I have talked on facebook with a lot quicker response. Quote Link to comment Share on other sites More sharing options...
Silverdollarboy2 Posted October 28, 2015 Report Share Posted October 28, 2015 I can see the signatures now and I have replied to the messages. Sorry for the delay. Caryl 1 Quote Link to comment Share on other sites More sharing options...
Jaide Posted December 8, 2015 Report Share Posted December 8, 2015 Now I can't remember how to add an avatar Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.