The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

fonts

3 posters

Go down

Solved fonts

Post by Mariami January 23rd 2015, 5:25 pm

please put me codes in javascriot code to set anther fonts
I want Heartlander,Sagoe script or other like fonts codes
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Guest January 23rd 2015, 5:36 pm

Hello Mariami,
You are able to change the font of your forum in the Colors section of your Admin Panel. It will be under the Display tab.

You will be able to add and change the fonts your website uses from there.

-James
avatar
Guest
Guest


Back to top Go down

Solved Re: fonts

Post by Mariami January 23rd 2015, 6:04 pm

I did not do it
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by SLGray January 23rd 2015, 6:12 pm

Are you trying to add fonts that are not on your computer?


fonts Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: fonts

Post by Mariami January 23rd 2015, 6:15 pm

SLGray wrote:Are you trying to add fonts that are not on your computer?
I have all fants in my computer
but I dont know how to add it on forum
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by SLGray January 23rd 2015, 6:17 pm

Administration Panel > Display > Colors & Pictures > Colors
The font options are in the first section.


fonts Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: fonts

Post by Guest January 23rd 2015, 6:24 pm

Hello again,
If you are wanting a Javascript code, try using these.

Insert this into your Javascript Management. Select "All Pages" when you add this as well.
Code:
$(function(){$(function() {
  $('.sceditor-button-font').click(function() {
    addFont('Calibri');
    addFont('Papyrus');
    addFont('Avantgarde');
 
    $('.sceditor-font-option.new-font').click(function(e){$('#text_editor_textarea').sceditor('instance').insertText('[font='+$(this).attr('data-font')+']','[/font]');$('.sceditor-font-picker').remove();e.preventDefault()})
  });
  function addFont(font){$('.sceditor-font-picker div').append('<a unselectable="on" class="sceditor-font-option new-font" href="#" data-font="'+font+'"><font unselectable="on" face="'+font+'">'+font+'</font></a>')}
})});

To add more fonts just add this code underneath the others in the code provided above.
Code:
addFont('Baskerville');

And to fix the editor after adding all these codes, just add this to your CSS.
Code:
.sceditor-font-picker {
  height:250px;
  width:150px;
  overflow-y:auto;
}

Code by @Ange Tuteur
Source -> http://fmdesign.forumotion.com/t220-add-more-font-choices-to-the-editor

-James
avatar
Guest
Guest


Back to top Go down

Solved Re: fonts

Post by SLGray January 23rd 2015, 6:28 pm

Are you trying to add fonts to the editor?


fonts Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: fonts

Post by Mariami January 23rd 2015, 7:35 pm

Jadster wrote:

To add more fonts just add this code underneath the others in the code provided above.
Code:
addFont('Baskerville');
I did not undertand where will I put this code? are you able to take picture/?
I want Sagoe script code and there is not that code
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Guest January 23rd 2015, 8:15 pm

You will want to add that underneath the code similar to it in the Javascript code I provided near the top.

Code:
addFont('Avantgarde');

Add your new fonts after that code there. It should be the 5th line down on the javascript code that I gave you.
avatar
Guest
Guest


Back to top Go down

Solved Re: fonts

Post by Mariami January 23rd 2015, 8:42 pm

I dont wont hot to fdo this
please show me pictures
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Guest January 23rd 2015, 9:16 pm

I have added an image for you inside the spoiler below Smile

Spoiler:

If you still need help, provide me all the fonts you want to add and I will do it and just provide the code.
avatar
Guest
Guest


Back to top Go down

Solved Re: fonts

Post by SLGray January 24th 2015, 12:11 am

Even if you add need fonts, they will not appear if they are not on your members' computers.


fonts Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: fonts

Post by Mariami January 24th 2015, 8:34 am

Jadster wrote:

If you still need help, provide me all the fonts you want to add and I will do it and just provide the code.
thank you
I want Sagoe script, Brush script MT , Caprica Sans , Cookie monster, Dom Casual, Forte regular, Geo-zaza regular, Solid italic, Heartlander, TFVictoria Scripts
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Guest January 24th 2015, 2:34 pm

Here you go! Just add this to your Javascript Management.
Code:
$(function(){$(function() {
  $('.sceditor-button-font').click(function() {
    addFont('Calibri');
    addFont('Papyrus');
    addFont('Avantgarde');
    addFont('Sagoe script');
    addFont('Brush script MT');
    addFont('Caprica Sans');
    addFont('Cookie monster');
    addFont('Dom Casual');
    addFont('Forte regular');
    addFont('Geo-zaza regular');
    addFont('Solid italic');
    addFont('Heartlander');
    addFont('TFVictoria Scripts');
 
    $('.sceditor-font-option.new-font').click(function(e){$('#text_editor_textarea').sceditor('instance').insertText('[font='+$(this).attr('data-font')+']','[/font]');$('.sceditor-font-picker').remove();e.preventDefault()})
  });
  function addFont(font){$('.sceditor-font-picker div').append('<a unselectable="on" class="sceditor-font-option new-font" href="#" data-font="'+font+'"><font unselectable="on" face="'+font+'">'+font+'</font></a>')}
})});

Then just add this to your CSS!
Code:
.sceditor-font-picker {
  height:250px;
  width:150px;
  overflow-y:auto;
}

But remember, just as @SLGray said above, these fonts will not show up for your members unless they have these fonts added to their laptop or computer. If they don't have these fonts in their computer then they won't appear for them.

Hope this helps!

-James
avatar
Guest
Guest


Back to top Go down

Solved Re: fonts

Post by Mariami January 24th 2015, 6:34 pm

thaaaaaaaaankk yoou very much
some fonts are not work , but rhis fons I have on computer instaledd, and are you able to put me the most beautiful and good fonts too?
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by SLGray January 24th 2015, 6:37 pm

You can remove or add any fonts you want in the JavaScript.


fonts Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: fonts

Post by Guest January 24th 2015, 8:32 pm

@Mariami,
What else are you wanting to do or other fonts you are wanting to add? I would be more then happy to assist you in fixing these.
avatar
Guest
Guest


Back to top Go down

Solved Re: fonts

Post by Mariami January 27th 2015, 3:27 pm

this did not wark
and are you able to put me another code in javascript code?

.sceditor-font-picker {
height:250px;
width:150px;
overflow-y:auto;
}
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Ape January 27th 2015, 5:24 pm

Mariami wrote:this did not wark
and are you able to put me another code in javascript code?

.sceditor-font-picker {
 height:250px;
 width:150px;
 overflow-y:auto;
}
This Code should be in your CSS files and will make a slide bar on your Fonts Box when it gets to a max size of 250 Hight a lille like this fonts Captur26


fonts Left1212fonts Center11fonts Right112
fonts Ape_b110
fonts Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19110
Reputation : 1991
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: fonts

Post by Mariami January 27th 2015, 6:31 pm

it does not work

fonts Image

fonts Image
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Ape January 27th 2015, 6:42 pm

you have an error in your Codes some place please send me a link to your forum and give me a Test account with admin rights to your forum in a pm and i will fix this for you but make sure you pm me with the password and test account name

APE


fonts Left1212fonts Center11fonts Right112
fonts Ape_b110
fonts Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19110
Reputation : 1991
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: fonts

Post by Mariami January 27th 2015, 6:53 pm

ok
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Ape January 27th 2015, 7:04 pm

All fixed lol if you see in this code


Code:
ul.navlinks span.new-message {
color: #FF0000;
you was missing the Closing bracket >> }

if you look here this is how it should be after each code made


Code:
ul.navlinks span.new-message {
color: #FF0000;
}

As you can see this is the code as it should be with the open bracket >> {
and then at the end of that code the closed bracket >> }
 

it is now working for you.


fonts Left1212fonts Center11fonts Right112
fonts Ape_b110
fonts Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19110
Reputation : 1991
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: fonts

Post by Mariami January 27th 2015, 7:06 pm

aaaaaa thannkk thankk you very muchh <333
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Ape January 27th 2015, 7:09 pm

You are so welcome Wink

is this now solved for you ?


fonts Left1212fonts Center11fonts Right112
fonts Ape_b110
fonts Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19110
Reputation : 1991
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: fonts

Post by Mariami January 28th 2015, 5:03 am

APE wrote:You are so welcome Wink

is this now solved for you ?
yes thank youu
it shows only for me and if other userns will not install that fonts in their computers they will not use that?
Mariami
Mariami
Forumember

Posts : 106
Reputation : 1
Language : english

http://mundonoveleras.forum2x2.ru/forum

Back to top Go down

Solved Re: fonts

Post by Ape January 28th 2015, 10:10 am

yes if they do not have that font in there computer then it will not show like you see it but they will see your main forum default font still.

Topic solved and archived


fonts Left1212fonts Center11fonts Right112
fonts Ape_b110
fonts Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19110
Reputation : 1991
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum