Tweaking WordPress – Adding new CSS classes highlighting updates

Tweaking WordPress – Adding new CSS classes highlighting updates

Quite a few of the pages on the CoherentLight website are updated over time, and I'd like to add a way of indicating that this has happened. Previously this has just been a block of text at the bottom of the page indicating what has changed. Or that a newer post on the same subject is available when they visit an older page.

But that is all too easy to get lost in the text surrounding it. What I want is to draw people's attention to an update, so adding some highlights would make it stand out a little more.

Updated: 26th September 2017 Added some more information.

Note: You might want to try the page on WordPress Plugins as well.

As you can see, they do tend to disappear, so I'd like to add some to make them stand out a little more. The first step to doing this is to identify them with a tag. So I'll wrap the lines in my page with

or
as appropriate.

Now to add some CSS to tweak the colours and make them standout a little more. This needs to go in the style.css file of my WordPress child theme.

.note_info, .note_update {
 color: darkblue;
 background-color: lightskyblue;
 }
Update: That's nice. It will be nicer.

But I'd also like to add a border and some padding around the text. So the next step is to extend the CSS a little more.

.note_info, .note_update {
 color: darkblue;
 background-color: lightskyblue;
 margin: 10px;
 padding: 12px;
 border-style: solid;
 border-width: 2px;
 border-radius: 10px;
}
Note: A more complex highlight with borders, and rounded corners.

I'd also like a little icon to appear at the side of the text too, so that it really stands out. So for that we'd need to select an icon, and float it left of the text. I have two small .png files for the moment, to test everything works.

.note_info::before {content: url('pencil.png'); float: left; padding: 5px; }
.note_update::before {content: url('refresh.png'); float: left; padding: 5px; }

That gives the result shown below.

Updated: 26th September 2017 Added some more information.
Everything is finally in place.
 

The URL for the image changes (depending on what page is being viewed), we need to embed this in the CSS as a base64 encoded image. ( is normally smaller, but that's a skill set to grow for another time). So we use a readily available base64 encoder, (I used https://www.base64-image.de/, but others are available. We then take the encoded data (there's a handy show code button and a select all for the CSS embedding) and replace the url in the CSS with this instead.

.note_info::before {content: url('data:image/png;base64,iVBORw0KGgoAAAA...'); float: left; padding: 5px; }

Then we need to make sure that we update this in our above-the-fold CSS, so that we don't get position jumps as the icon renders once the final CSS loads later.

Note: ‘Tis all done.
Go and do likewise on your site.
You might want to try the page on WordPress Plugins as well.
John Dixon

John Dixon is the Principal Consultant of thirteen-ten nanometre networks Ltd, based in Wiltshire, United Kingdom. He has a wide range of experience, (including, but not limited to) operating, designing and optimizing systems and networks for customers from global to domestic in scale. He has worked with many international brands to implement both data centres and wide-area networks across a range of industries. He is currently supporting a major SD-WAN vendor on the implementation of an environment supporting a major global fast-food chain.

Comments are closed.