MyBB Community Forums

Full Version: :: some quetiones ::
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can i change the style of the mouse in my forum like vb or ipb

like this mouse
http://www.losha.net/vb/

and how can i put "stiky" near to sticky theads

" stiky "
that taken from lang files
because i will cange it with a photo


edit :i had already uploded a mouse
how can i maje an image instead of " stiky" word

how can i welcome the new user in 2 images at the bottom of he header ( like vb but vb in navbar i dont know where it will be here ) .
1st download a cursor, search google for that.

Then upload this cursor to your web host space, let's say to ./location for example and cursor name is cursor.ani
In Admin CP > Themes > Modify / Delete > Edit theme style
Under Body's Extra CSS Atrribute put

cursor: url("location/cursor.ani");
Change the path according to what you have, and the name (cursor.ani) according to the one you have.

You can use .cur instead of .ani it depends on the cursor you have.

Note that you might need to add a semi column ( ; ) after line-height: 1.4 in the box i have mentioned
didnt work
and i had puted

;
and how can i do this
Quote:how can i put "stiky" near to sticky threads

" stiky "
that taken from lang files
because i will cange it with a photo
1st please dont triple or double post. Please merge all the above threads.
SILK_GX Wrote:didnt work
Have you downloaded and uploaded a compatible cursor?





SILK_GX Wrote:and how can i do this
Quote:how can i put "stiky" near to sticky threads

" stiky "
that taken from lang files
because i will cange it with a photo

Open forumdisplay.php
FInd
if($thread['sticky'] == "1" && !$donestickysep)
Above it add
if($thread['sticky'] == 1)
		{
			$sticky = "Sticky: ";
		}
		else
		{
			$sticky = '';
		}

The in forumdisplay_thread find
{$gotounread} 
After it add
{$sticky}
ammm

good mod but how can i replace stiky with a photo i tried this code but it says that there is a faut in forum_display.php in line 623
if($thread['sticky'] == 1)
{
$sticky = "<img src="http://www.serv4rb.uni.cc/forum/images/sticky.gif">";
}
else
{
$sticky = '';
}

and when i use this
if($thread['sticky'] == 1)
{
$sticky = "Sticky: ";
}
else
{
$sticky = '';
}
it works correctly??
please zaher give me the right code
You have not escaped the quotation marks...instead use this:
if($thread['sticky'] == 1)
{
$sticky = '<img src="http://www.serv4rb.uni.cc/forum/images/sticky.gif">';
}
else
{
$sticky = '';
}
thank you very much drpoodle