MyBB Community Forums

Full Version: How Can I Add Writing and a Picture To Another Page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2012-04-13, 02:49 PM)weBex Wrote: [ -> ]
(2012-04-13, 02:46 PM)JovanJ. Wrote: [ -> ]Follow this tutorial:

http://community.mybb.com/thread-116225.html

After you finish everything make me know here.

It sounds to me he's trying to add an existing page onto the navigation area - not trying to create a whole new page from scratch.

jdog55007, it seems you're in the right area, the header template, can you show us your forum so we can see how it looks right now? We may be able to identify the problem as well by looking at the source code.

EDIT:

Nevermind, I didn't see your link originally.

Okay so, you have your upgrade link on the top, and there's already text in it. And you're trying to edit the text?

This would have to depend on which plugin you used to "add" this custom page.

There's likely a tool/function they added in the Admin CP that'll allow you to edit/alter the text.

Can you tell us which plugins you used?

I used Page Manager. I DID add text from the very beginning, but it is NOT formatted the way I want it to be formatted! It's all wierd and stuff. Every dash is supposed to have its own line down. Also, page manager won't let me add in a picture to the page or a paypal button. So what should I do? Please help. This is very important!
(2012-04-13, 02:55 PM)jdog55007 Wrote: [ -> ]I used Page Manager. I DID add text from the very beginning, but it is NOT formatted the way I want it to be formatted! It's all wierd and stuff. Every dash is supposed to have its own line down. Also, page manager won't let me add in a picture to the page or a paypal button. So what should I do? Please help. This is very important!

Just relax, you're getting help, there's no need to seem so angry or impatient.

Your page is likely using HTML, so you just need to format it as such.

For example, I took your existing text and wrapped it around HTML code:
<b><u><font size="3">ShadyGamerz VIP Membership</font></b></u>
<br>
<br>- Access to hidden forums
<br>- Access to hidden downloads
<br>- A colored username
<br>- Gold username on forums with badge
<br>- Advertisement Free areas of the site
<br>- Request a download <br>- The ability to give positive or negative reputation
<br>- Change your username <br>- First to test new site areas
<br>- Set your own custom motto on the forum <br>- Access to 500 Free downloads
<br>- Change the color of your username when you like <br>- Access to modding tools and how to's 
<br>- Able to have 2000 more PM messages storage instead of 100 
<br>- Many more features

If you paste that in, it should look more formatted.

Paypal should provide you HTML code with the link & image, you should be able to put that code in.
(2012-04-13, 02:59 PM)weBex Wrote: [ -> ]
(2012-04-13, 02:55 PM)jdog55007 Wrote: [ -> ]I used Page Manager. I DID add text from the very beginning, but it is NOT formatted the way I want it to be formatted! It's all wierd and stuff. Every dash is supposed to have its own line down. Also, page manager won't let me add in a picture to the page or a paypal button. So what should I do? Please help. This is very important!

Just relax, you're getting help, there's no need to seem so angry or impatient.

Your page is likely using HTML, so you just need to format it as such.

For example, I took your existing text and wrapped it around HTML code:
<b><u><font size="3">ShadyGamerz VIP Membership</font></b></u>
<br>
<br>- Access to hidden forums
<br>- Access to hidden downloads
<br>- A colored username
<br>- Gold username on forums with badge
<br>- Advertisement Free areas of the site
<br>- Request a download <br>- The ability to give positive or negative reputation
<br>- Change your username <br>- First to test new site areas
<br>- Set your own custom motto on the forum <br>- Access to 500 Free downloads
<br>- Change the color of your username when you like <br>- Access to modding tools and how to's 
<br>- Able to have 2000 more PM messages storage instead of 100 
<br>- Many more features

If you paste that in, it should look more formatted.

Paypal should provide you HTML code with the link & image, you should be able to put that code in.

Thank you sooo much! That is the answer I was looking for! It looks way more formatted. But it still isn't what I want. I want a goldish color on the "ShadyGamerz VIP Membership" title and I want bold on everything. But the problem is that I don't know any HTML at all. And I don't know how to add a picture or anything. How can I add a picture and change the colors and make everything bold? If you can really tell me how to do that, you are AWESOME!!!Thanks sooo much in advance!
To add picture:

<img src="http://yourpicturelink" alt="Text" border="0" />

To make everyhing bold:

Just add <b> tag where you want to be bold.

Colors:

<font color="somecolor"> Text </font>
It looks like you figured out the picture part, for the gold color, change:

<b><u><font size="3">ShadyGamerz VIP Membership</font></b></u>

to:

<b><u><font size="3" color="#e5c554">ShadyGamerz VIP Membership</font></b></u>

And to make everything bold, just remove </b> in the "ShadyGamerz VIP Membership" code, so it would be:

<b><u><font size="3" color="#e5c554">ShadyGamerz VIP Membership</font></u>

Then at the bottom of all the code, add:
</b>
Pages: 1 2