MyBB Community Forums

Full Version: MyTrade theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
(2015-07-12, 12:36 AM)eNvy Wrote: [ -> ]
(2015-07-12, 12:32 AM)nikiips Wrote: [ -> ]Ah.... But is not appear only at home page but it's ok inside the forum

Even in the portal, it looks fine for me at least...

Strange... Huh  What the software are required for the site is displayed without problem ? because I tested in more computer is same problem
(2015-07-12, 12:41 AM)nikiips Wrote: [ -> ]
(2015-07-12, 12:36 AM)eNvy Wrote: [ -> ]
(2015-07-12, 12:32 AM)nikiips Wrote: [ -> ]Ah.... But is not appear only at home page but it's ok inside the forum

Even in the portal, it looks fine for me at least...

Strange... Huh  What the software are required for the site is displayed without problem ? because I tested in more computer is same problem

None really, if you still keep seeing that, do this:

Go to ACP > Templates & Styles > Templates > MyTrade Templates > Ungrouped templates > Headerinclude

There, search this:

<link href="{$mybb->settings['bburl']}/images/mytrade/font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css" />

Replace that code with this new code:

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">

Save the changes and see if it works.
Very Very thanks is good its works very thanks for your help.

But I have one last request for you, how can I remove the logo to the forum and put my logo for every game as the photo attached

http://pasteboard.co/1TUiGnLS.png

Thanks for your reply
(2015-07-12, 10:38 AM)nikiips Wrote: [ -> ]Very Very thanks is good its works very thanks for your help.

But I have one last request for you, how can I remove the logo to the forum and put my logo for every game as the photo attached

http://pasteboard.co/1TUiGnLS.png

Thanks for your reply

Well, if you want to use different images for each forum, you need to follow this tutorial: http://community.mybb.com/thread-92128.html

Or use this plugin/mod: http://community.mybb.com/mods.php?action=view&pid=457

The icons on MyTrade theme are all the same for each forum you create.
Hello,
I want add my logo in the header of the forum ans replace the logo of Mytrade. its possible ?
Here: http://pasteboard.co/2hut9M0a.png
Thanks for your help

And I want change the font of logo. please
(2015-07-27, 10:36 PM)nikiips Wrote: [ -> ]Hello,
I want add my logo in the header of the forum ans replace the logo of Mytrade. its possible ?
Here: http://pasteboard.co/2hut9M0a.png
Thanks for your help

And I want change the font of logo. please

Actually, the logo is a FontAwesome Icon and text. If you want to change both and put your logo as an image, you need to do this:

In your header template, search this code:

<div id="header">
  	<div class="wrapper">
      	<div class="logo"><i class="fa fa-comments fa-lg"></i> {$lang->xstyled_mytrade}</div>
  	</div>
</div>

Now replace it, in this way:

<div id="header">
  	<div class="wrapper">
      	<div class="logo"><img src="PATH OF YOUR LOGO" /></div>
  	</div>
</div>

But, if you want to change the FontAwesome Icon and the text, also, change the font used on the text:

Change the icon on the same template (header), like this:

<div id="header">
  	<div class="wrapper">
      	<div class="logo"><i class="fa fa-ICON OF YOUR CHOICE fa-lg"></i> {$lang->xstyled_mytrade}</div>
  	</div>
</div>

You can see more icons here: http://fontawesome.io/icons/

After, to change the text of the logo, you need to go to your hosting, root of the mybb forum, inc folder, languages, english, and open vars_envy.lang.php file.

Inside the file you will have all the custom vars I used on MyTrade theme, search this one:

$l['xstyled_mytrade'] = "MyTrade";

Replace "MyTrade" with the text of your choice.

After, to change the font used on the logo, simply go to the CSS of the theme (MyTrade.css), search this class:

.logo {
  	float: left;
  	margin-top: 15px;
  	color: #F2F2F2;
  	font-size: 52px;
  	font-weight: 700;
}

And there, put your font-family you want to use.

Cheers.
Very very thanks for your help but how I insert a banner and my logo in my header. Example: I would like make this http://pasteboard.co/2hFJTKul.png

But with my logo and banner
(2015-07-28, 01:33 AM)nikiips Wrote: [ -> ]Very very thanks for your help but how I insert a banner and my logo in my header. Example: I would like make this http://pasteboard.co/2hFJTKul.png

But with my logo and banner

I told you before, check it out.
Oh, okay, thank you very much for helping .

But excuse me yet but unfortunately I am a beginner Undecided .

- First I wanted to know how I can change the login page , replace the text ? http://pasteboard.co/2kzo33pL.png

- I also wanted to learn how to change the color of the admins on the outside website to differentiate users and admins. http://pasteboard.co/2kzzJbMX.png

- And last quick question how I can change the language of the red rectangle . So I would translate . http://pasteboard.co/2kzBEWeK.png

Thank you very much for helping me if this does not bother you
(2015-07-29, 11:17 PM)nikiips Wrote: [ -> ]Oh, okay, thank you very much for helping .

But excuse me yet but unfortunately I am a beginner Undecided .

- First I wanted to know how I can change the login page , replace the text ? http://pasteboard.co/2kzo33pL.png

- I also wanted to learn how to change the color of the admins on the outside website to differentiate users and admins. http://pasteboard.co/2kzzJbMX.png

- And last quick question how I can change the language of the red rectangle . So I would translate . http://pasteboard.co/2kzBEWeK.png

Thank you very much for helping me if this does not bother you

First and last, I quote myself:

Quote:After, to change the text of the logo, you need to go to your hosting, root of the mybb forum, inc folder, languages, english, and open vars_envy.lang.php file.

Inside the file you will have all the custom vars I used on MyTrade theme, search this one:

inc > languages > english > vars_envy.lang.php, there you have all the custom text.

To change the color on the last posts you need to use a plugin or do modifications on the core files of mybb.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17