Support Forum
I'm not sure why we are seeing it as 'view code' in no container rather than 'view raw code' in the syntax highlighter container..
When you copied the code from one of our posts above, did you highlight the whole block and manually delete the 1, 2, 3 list? Or did you 'View Raw Code' and copy it from there?
I just tried copying the block as you see it in a post and it does break the quote marks making them rich text.
late to game and have not read the whole thread... but you should only have to load the image in the child folder... it searches there first and wont search the parent if found...
Visit Cruise Talk Central and Mr Papa's World
Just for your information, using the data inspector in the Forum > Toolbox, you can select whatever data a page is using to display on the page itself, so you can find what you need to reference. For forum view if you enable spThisTopic to display (under Forum View Data), when you view the forum page you will see all data, and can pick out what you need to use.
So, for this to display the image for individual topics with unread posts, try:
if ($spThisTopic->unread > 0) sp_AddIcon('tagClass=spRowIcon spRight&icon=sp_Unread.png');
Ike said
Just for your information, using the data inspector in the Forum > Toolbox, you can select whatever data a page is using to display on the page itself, so you can find what you need to reference. For forum view if you enable spThisTopic to display (under Forum View Data), when you view the forum page you will see all data, and can pick out what you need to use.So, for this to display the image for individual topics with unread posts, try:
<br />
if ($spThisTopic->unread > 0) sp_AddIcon('tagClass=spRowIcon spRight&icon=sp_Unread.png');<br />
Awesome, this now works! How can I fix the spacing in the picture below? I need to shift the yellow arrows to the left a bit so the div breaks may match, as well as the icon on the right.
for these kind of css issues, its best to use the inspector function of your browser... you can inspect the element and see what is driving it... typically you can also what if your changes until you have it right, then just make the css changes...
especially since you want to change the spacing above the +1 image you added... so whatever class is applied image container, remove some margin or padding... with a link, we could probably offer some guidance...
or do you mean why is the row with the image shifted?
in the code I gave you, I had you add a column all the time, image or not so stuff aligned... did you do that? it appears you just output an icon vice putting in a column to keep things aligned...
Visit Cruise Talk Central and Mr Papa's World