MyBB Community Forums

Full Version: Some Queries
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
You can give it a class like that;
<li><a href="http://runefetish.net/misc.php?page=Chat" title="Chat" alt="Chat" class="yaldaram">Chat</a></li>
and add this style to your global.css;
.yaldaram{
color: #YOUR_HEX_COLOR_CODE;
}
Why is your name in it?

I don't understand

Can you just give me the PHP code to replace the old one, but coloured RED or WHITE
NVM I understand

Can you tell me the same thing but putting a picture in it? Also centering it, as it's at the left side atm
(2011-04-20, 07:15 PM)BlueBear Wrote: [ -> ]Why is your name in it?
Its just for an example.. Toungue

(2011-04-20, 07:15 PM)BlueBear Wrote: [ -> ]Can you tell me the same thing but putting a picture in it? Also centering it, as it's at the left side atm

Replave above with this;
.yaldaram{
color: #hex_color
background: url(URL_TO_YOUR_IMAGE.gif) no-repeat left center;
}
If you put it in the right place it should match the rest of the links anyway?

You don't need to change the HTML or add a new class, just edit the existing class in your global.css
#navbar ul#nav li a {
	color: #203446;
	font-weight: bold;
	text-shadow: #FFFFFF 1px 1px 0;
	font-size: 1.1em;
}

We can't see the links you've added as they're only shown to members, if you want them to show to guests you also need to add them to the header_welcomeblock_guest template.

Merged with your other thread as this is essentially the same problem.

EDIT: Now I've actually looked at the code you don't want alt text for a hyperlink (that'll teach me not to just copy and paste without thinking), you don't really need title text that says exactly the same as the link either - get rid of that so it looks like:
<li><a href="http://runefetish.net/misc.php?page=Chat">Chat</a></li>

Ok that worked, thanks.


Another problem; LOL Sad

How can I edit peoples reputation to +(#) or -(#)
(2011-04-20, 07:40 PM)BlueBear Wrote: [ -> ]How can I edit peoples reputation to +(#) or -(#)

ACP > Users and groups > groups > Edit [Options] > and under Users and Permissions tab add any value you want to set that particular Usergroup for sending and receiving Reputation points in Points to Award/Take Away: option field.
I know, but is their anyway I can edit peoples amount of reputation?

Like somebody -Repped me on my own forum... How do I put it back up, there must be a way.
Just delete their negative rep?

Otherwise, you'd have to change it in the database.
Pages: 1 2