• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[WEBSITE] Gesior News System - images, codes

Gabriel Tibiano

New Member
Joined
Nov 21, 2009
Messages
420
Reaction score
4
Hi guys, i've got some questions to ask here, there we go.​

1st
- What should i do in my lattestnews.php to, automatically they put 'comments' in the bottom-right of the post and create a a Thread at the forum on News Board.


2nd [THIS WAS SOLVED]
- Why in my lattest news post i should use tags like a HTML versions and in Fórum Board i must use [.b], theese tags.


3rd [THIS WAS SOLVED]
- I've made an gallery page using theese functions to post the thumb images, and that images don't load at the firefox web broswer
HTML:
 <img src="" ... > </img>


I'll be grateful for supporting me.
Gabriel de Freitas.
 
Last edited:
Hi guys, i've got some questions to ask here, there we go.​

1st
- What should i do in my lattestnews.php to, automatically they put 'comments' in the bottom-right of the post and create a a Thread at the forum on News Board.


2nd
- Why in my lattest news post i should use tags like a HTML versions and in Fórum Board i must use [.b], theese tags.


3rd
- I've made an gallery page using theese functions to post the thumb images, and that images don't load at the firefox web broswer
HTML:
 <img src="" ... > </img>


I'll be grateful for supporting me.
Gabriel de Freitas.


1. I am not really sure if I understand this question; would you like to configure all threads in the new section to become news posts as well and list the number of the comments in the bottom-right corner?

2. Because Gesior chose to use HTML instead of BBCode. Although, you can easily change this by editing the function.

3. Firstly, you should always include ALT while using images. An example of that is:
HTML:
<img src="images/file.jpg" alt="Image File" />
. The borders should be done through CSS.
 
1. I am not really sure if I understand this question; would you like to configure all threads in the new section to become news posts as well and list the number of the comments in the bottom-right corner?

2. Because Gesior chose to use HTML instead of BBCode. Although, you can easily change this by editing the function.

3. Firstly, you should always include ALT while using images. An example of that is:
HTML Code:
<img src="http://otland.net/images/file.jpg" alt="Image File" />
. The borders should be done through CSS.


1. I'm just wondering if there is a possibility that when I post a a news archive (in lattest news), it automatically create a NEWS post on FORUM BOARD and add the button 'comments' with number of comments in lattest news page.

2. Okay, now it's clear for me, thank you. :rolleyes:

3. Thank you again for supporting me, but WHY, should I put this 'alt'? His function is not nominate an image? PS: I put 'alt code' at the images and now them appears but, appears only an link and not appears the thumb image.


An example of thoose codes:
HTML:
<table>
	<tr><td style="height: 120px;">
			<a href="?subtopic=xxxxx=xxxxx">
				<img src="gallery\thumbs\xxxxx-thumb.png" border="0" alt="XXX Thumb"> </img>
			</a>
		</td>
		<td>Text - Description.</td>
	</tr>
</table>



I'll be grateful for supporting me.
Gabriel de Freitas.
 
Last edited:
1. I'm just wondering if there is a possibility that when I post a a news archive (in lattest news), it automatically create a NEWS post on FORUM BOARD and add the button 'comments' with number of comments in lattest news page.

2. Okay, now it's clear for me, thank you. :rolleyes:

3. Thank you again for supporting me, but WHY, should I put this 'alt'? His function is not nominate an image?





I'll be grateful for supporting me.
Gabriel de Freitas.

The alt attribute specifies an alternate text for an image, if the image cannot be displayed.
 
Back
Top