Welcome! To use this support forum, please Login or Join Today!
You are here → Home :: Forum Home :: WordPress Themes Support :: Presstige WordPress Theme :: Thread
sourcecode not showing as expected
Could this be a theme issue? I’m trying to post sourcecode such as:
[sourcecode language=“css”]
ScrollBar
{
up-skin-arrow:ClassReference(null);
down-skin-arrow:ClassReference(null);
}
[/sourcecode]
and it’s not appearing as expected. I’m following these instructions: http://en.support.wordpress.com/code/posting-source-code/
Any help apprecaited. Thanks.
I believe that shortcode is for wordpress.com users, not the open source wordpress.org package.
You should just be able to put your code in pre tags:
<pre> ScrollBar { up-skin-arrow:ClassReference(null); down-skin-arrow:ClassReference(null); } </pre>
Yeah, looks like you’re right. pre doesn’t really cut it, so I went with http://wordpress.org/extend/plugins/better-wordpress-syntax-based-on-geshi/changelog/ in the end. Thanks, Casey