Changing fonts for titles and widgets

  • Unknown's avatar

    I need some serious help with this!

    I’ve figured out how to change the font for the body of my posts.

    Now I need to change the fonts and colors (including background colors) of my widgets, as well as change the font for my posting titles.

    I will be forever grateful to anyone who can help me with this.

    My blog is located here: http://attackmarketing.wordpress.com

  • Unknown's avatar

    There’s virtually no help at all for CSS here; there are only two or three people who understand it fully who answer questions. Have you read the reference material the FAQ points you to?

    Where can I find CSS customization help?

  • Unknown's avatar

    Thanks so much for responding, raincoaster. I have gone to the sites recommended, but I can’t seem to find information on widgets/ posting titles. Do you have any other suggestions?

  • Unknown's avatar

    You need to find out the css-selector for the widgets. Go to the source code and find them as <div somethingsomething>. Then you go to your CSS, and find the selectors. Try it out a little at a time. insert /change the background colour by adding
    background-color: yellow;
    (yellow obviously just an example).
    You can do the same with text and text color by defining

    font-family: whateveryoulikehere;
    color: red;

    hope it helps. take it easy and change one thing at a time, and check if the results is what you’re after.

  • Unknown's avatar

    (…..or you could use a css editor, of course, depending on what sort of h/w & s/w you are running.)
    Be good to know how it goes…?

  • Unknown's avatar

    boblets, thanks so much for your help with this. i checked out the source code, but was having trouble identifying the code i should be applying to my css code. i believe the following is the relevant source code from my page:

    <div class=”navigation”>
    <p class=”next”></p>
    <p class=”previous”></p>

    </div>

    </div>

    <div id=”sidebar”>

    <ul class=”sidebar-list”>

    <li id=”search” class=”widget widget_pressrow_search”> <h2 class=”widgettitle”><label for=”s”>Search</label></h2>
    <div class=”sidebar_section”>
    <form id=”search_form” method=”get” action=”http://attackmarketing.wordpress.com”>
    <input id=”s” name=”s” class=”text_input” type=”text” value=”” size=”10″ />
    <input id=”searchsubmit” name=”searchsubmit” type=”submit” value=”Find »” />
    </form>

    </div>

    <li id=”categories-114803991″ class=”widget widget_categories”><h2 class=”widgettitle”>Attack! Service Offerings</h2>

    <li id=”linkcat-1356″ class=”widget widget_links”><h2 class=”widgettitle”>Blogroll</h2>

    <ul class=’xoxo blogroll’>

  • Attack!’s Website
  • Sumo World
  • <li id=”text-153732321″ class=”widget widget_text”> <div class=”textwidget”><span></span></div>

    IF you have the time, could you offer any advice on what code is should be adding to my style sheet to change the font/ color and size?

    Thanks again!