/    Sign up×
Community /Pin to ProfileBookmark

changing existing breadcrumbs javascript for a different font size

im new to javascript and all i want to do is change the font size of the breadcrumbs that displays with this javascript if anyone can lend me a hand with showing me how or explaining how to edit in the new font size i would be very happy thanks

function breadcrumbs(){
sURL = new String;
bits = new Object;
var x = 0;
var stop = 0;
var output = “<a href=”/”>Home</a> :: ” ;
sURL = location.href;
sURL = sURL.slice(8,sURL.length);
chunkStart = sURL.indexOf(“/”);
sURL = sURL.slice(chunkStart+1,sURL.length)
while(!stop){
chunkStart = sURL.indexOf(“/”);
if (chunkStart != -1){
bits[x] = sURL.slice(0,chunkStart)
sURL = sURL.slice(chunkStart+1,sURL.length);
}else{
stop = 1;
}
x++;
}
for(var i in bits){
output += “<a href=””;
for(y=1;y<x-i;y++){
output += “../”;
}
output += bits[i] + “/”>” + bits[i] + “</a> :: “;
}
document.write(output + document.title);
}

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@FangApr 24.2008 — document.write('&lt;span style="font-size:larger;"&gt;'+output + document.title+'&lt;/span&gt;');&lt;a href="apple.htm"&gt;xx&lt;/a&gt;
×

Success!

Help @sundance453 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.28,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...