fonts
3 posters
Page 1 of 1
fonts
please put me codes in javascriot code to set anther fonts
I want Heartlander,Sagoe script or other like fonts codes
I want Heartlander,Sagoe script or other like fonts codes
Re: fonts
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
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
Guest- Guest
Re: fonts
Are you trying to add fonts that are not on your computer?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: fonts
I have all fants in my computerSLGray wrote:Are you trying to add fonts that are not on your computer?
but I dont know how to add it on forum
Re: fonts
Administration Panel > Display > Colors & Pictures > Colors
The font options are in the first section.
The font options are in the first section.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: fonts
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.
To add more fonts just add this code underneath the others in the code provided above.
And to fix the editor after adding all these codes, just add this to your CSS.
Code by @Ange Tuteur
Source -> http://fmdesign.forumotion.com/t220-add-more-font-choices-to-the-editor
-James
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
Guest- Guest
Re: fonts
Are you trying to add fonts to the editor?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: fonts
I did not undertand where will I put this code? are you able to take picture/?Jadster wrote:
To add more fonts just add this code underneath the others in the code provided above.
- Code:
addFont('Baskerville');
I want Sagoe script code and there is not that code
Re: fonts
You will want to add that underneath the code similar to it in the Javascript code I provided near the top.
Add your new fonts after that code there. It should be the 5th line down on the javascript code that I gave you.
- 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.
Guest- Guest
Re: fonts
I have added an image for you inside the spoiler below
If you still need help, provide me all the fonts you want to add and I will do it and just provide the code.
- 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.
Guest- Guest
Re: fonts
Even if you add need fonts, they will not appear if they are not on your members' computers.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: fonts
thank youJadster 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.
I want Sagoe script, Brush script MT , Caprica Sans , Cookie monster, Dom Casual, Forte regular, Geo-zaza regular, Solid italic, Heartlander, TFVictoria Scripts
Re: fonts
Here you go! Just add this to your Javascript Management.
Then just add this to your CSS!
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
- 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
Guest- Guest
Re: fonts
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?
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?
Re: fonts
You can remove or add any fonts you want in the JavaScript.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: fonts
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;
}
and are you able to put me another code in javascript code?
.sceditor-font-picker {
height:250px;
width:150px;
overflow-y:auto;
}
Re: fonts
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 thisMariami 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;
}
Re: fonts
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
APE
Re: fonts
All fixed lol if you see in this code
if you look here this is how it should be after each code made
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.
- Code:
ul.navlinks span.new-message {
color: #FF0000;
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.
Re: fonts
yes thank youuAPE wrote:You are so welcome
is this now solved for you ?
it shows only for me and if other userns will not install that fonts in their computers they will not use that?
Re: fonts
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
Similar topics
» How does one add new fonts in addition to their old fonts?
» How to add fonts
» Fonts
» Fonts
» Google Fonts
» How to add fonts
» Fonts
» Fonts
» Google Fonts
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum