• Hello –
    I have edited the Flickr text in the sidebar to have the colors of the word Flickr to match the logo (blue & pink). The problem is, I can’t get the different colored letter sets to show up on the same line. Please see my page to know what I am talking about: https://varresa.org

    Here is the code I used:

    <?php if ((function_exists('get_flickrRSS')) && is_home() && !(is_paged())) { ?>
    <div class="flickr"><h2 style="color:#0066FF">flick<h2 style="color:#FF0099">r</h2> <h2>feed</h2>

    <ul>
    <?php get_flickrRSS(); ?>
    </ul>
    </div>
    <?php } ?>

    I would like it to look like what Ben Gray has done at https://www.openswitch.org/

    Any ideas?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • An h2 tag includes a line break automatically, so I would probably change that section to something like this:
    <h2><span style="color:#0066FF">flick</span><span style="color:#FF0099">r</span> feed</h2>

    The spans will take care of the color without a line break, and the whole title is in one h2 tag.

    Thread Starter varresa

    (@varresa)

    Beautiful – that worked perfectly!

    I have only been with WordPress for 2 days now and this was my first support post – so far, I’m impressed ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Editing Flickr Text in Sidebar’ is closed to new replies.