Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi i need to display my link in footer as "powered by Arun" and it should be a link to my homepage. I need to give a different look to the name next to Powered by. So how to increase the size of the link and any suggestions for customizing the link well.

share|improve this question

migrated from webmasters.stackexchange.com Apr 10 '12 at 11:26

3 Answers

Use a <span> element:

<span>Powered By</span> Arun

You can then apply a style to the span, or a class:

  • Inline style:

    <span style="font-size:1.2em;"></span>
    
  • Class style:

    apply the class:

    <span class="mySpanClass"></span>
    

    and specify corresponding style (in a stylesheet):

    .mySpanClass { font-size:1.2em; }
    
share|improve this answer
He needs a link. Also, I guess he wants to style up the word next to powered by i.e. his name 'Arun' – Jashwant Apr 10 '12 at 12:19
He may have a link, there's nothing stopping that - and I presume he has that, this is just to slot in between the link tags. – Grant Thomas Apr 10 '12 at 12:24
Yeap, but looking at his question, I am pretty much sure, he wont feel comfortable placing it inside link :) – Jashwant Apr 10 '12 at 16:07

As denoted by Mr. Disappointment in his answer you can use a <span>.

To show an example of using it with the link, see below.

<a href="LinkToYouHomePage.htm"><span style="font-size: small">Powered by</span> <span
    style="font-size: larger">Arun</span> </a>
share|improve this answer

I think, you need something like this,

<a href='linkToHomePage' style='font-size:1.2em'>Powered by<span style="font-weight:bold">Arun</span></a>

(I am guessing your are not a technical person, so this will be easy for you)

And if you can do, please do this,

Add this css,

.poweredby{
 font-size:1.2;
}
.author{
font-weight:bold;
}

And add this markup,

<a href='linkToHomePage' class='poweredby'>Powered by<span class="author">Arun</span></a>
share|improve this answer
Why downvote, did I do something wrong. Please correct me. – Jashwant Apr 10 '12 at 12:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.