Mutikasa Power Member Joined May 23, 2011 Messages 589 Reaction score 216 Dec 13, 2012 #1 I have some <h1>Logo</h1> made even bigger with css, but want to add little "beta" next to it. So it be: Logobeta how do I do that?
I have some <h1>Logo</h1> made even bigger with css, but want to add little "beta" next to it. So it be: Logobeta how do I do that?
BHopkins Elite Member Joined Dec 31, 2010 Messages 2,609 Reaction score 1,753 Dec 13, 2012 #2 You could duplicate the CSS you used for the <h1> tag then use <h7> for the small tag. You could also just use HTML.
You could duplicate the CSS you used for the <h1> tag then use <h7> for the small tag. You could also just use HTML.
mrsix Power Member Joined Sep 13, 2008 Messages 785 Reaction score 475 Dec 13, 2012 #3 Code: <h1 class="logo">LOGO <span>beta</span></h1> h1.logo span {font-size:11px; font-weight:normal;}
Code: <h1 class="logo">LOGO <span>beta</span></h1> h1.logo span {font-size:11px; font-weight:normal;}
L lovetospooge Junior Member Joined Jul 24, 2011 Messages 171 Reaction score 93 Dec 13, 2012 #4 <h1 style="display:inline;">Logo</h1><span>beta</span>
E edgaro160 Junior Member Joined Dec 17, 2012 Messages 162 Reaction score 190 Dec 17, 2012 #5 You can make that really easy use dreamweaver and make a css rule. underline the text beta and apply the rule to beta. Thanks have a nice day
You can make that really easy use dreamweaver and make a css rule. underline the text beta and apply the rule to beta. Thanks have a nice day