Hi there.
There are two different problems here.
1. Changing the current button means changing the CSS in an iframe created by Twitter (via some JavaScript) – and that isn’t easily possible. You can read more about changing CSS in an iframe here.
Currently the only real solution to this would either be:
- to switch off the Twitter JavaScript (which I could probably add a switch for – since it already switches off for people who have ‘do not track’ enabled) and write your own – or
- change Rotating Tweets to include its own Twitter button that popped open the relevant Twitter window and was style-able in the same way as the rest of the plug-in
2. Changing the border round all the tweets is pretty straightforward. Something like:
#content #main .rotatingtweets {
border: solid thick #007acc;
}
should do it. If that doesn’t work, you might need to make your CSS selector more ‘specific’. You can read about CSS specificity here.
-
This reply was modified 8 years, 4 months ago by
Martin Tod.
-
This reply was modified 8 years, 4 months ago by
Martin Tod.