PHP Font Help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MOInsIT
    New Member
    • Apr 2010
    • 1

    PHP Font Help

    Hello all,

    I'm not sure if what I'm trying to do is possible or not. The company I work for has a webpage that was created by a previous employee and they did not document the code well, on top of that I'm not very familiar with PHP in general. First I'll show you the current code:

    $manual=$manual ."</td><td> &nbsp; <img src=\"../images/ico_educate.gif \" width=\"32\" height=\"32\"></td><td><p><stro ng><a href=\"educatio nal.php\">POPS Producers Online Plus Services</a></strong></td></tr>";

    Now, what I'm trying to do: I want to change the font of the word POPS. Make it larger than the rest of the words, preferably as big as the icon if possible, and maybe even use a "fancier" script like Adrian while leaving the "Producers Online Plus Services" at the normal size and font type. If I could line everything up so that the bottom of the letters in "Producers. .." lines up with the bottom of the letters in POPS that would be outstanding.
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    just a matter of HTML/CSS
    Code:
    $manual .= '</td>
    <td> &nbsp; <img src="http://bytes.com/topic/php/images/ico_educate.gif" width="32" height="32"></td>
    <td>
        <p>
            <a href="educational.php">
                <span class="higher">POPS</span>
                <strong>Producers Online Plus Services</strong>
             </a>
        </p>
    </tr>";
    Code:
    .higher {
        font-size: 150%;
        /* more styling */
    }

    Comment

    Working...