Jump to content

Testing I can add pics


Caryl

Recommended Posts

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).

 

Monkey.png

Edited by alexyay
Link to comment
Share on other sites

  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...