• Resolved igioc

    (@igioc)


    I am using wordpress 2.9 and the default Kubrick theme. I am trying to get the . . . . . . . . moved down near the bottom part of my red logo. I know it is css that I need but I cannot seem to figure out if I have it in the right place or not and what the other stuff I need in my style.css file.

    In my header file I added the following code:

    <div class="ad-top">
    . . . . . . . . .
    </div>

    Below is the section I added it in my header.php file:

    <div id="page">
    
    <div id="header">
    	<div id="headerimg">
    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
    		<div class="description"><?php bloginfo('description'); ?>
    		      <div class="ad-top">
                          . . . . . . . . .
                          </div>
    		</div>
    	</div>
    </div>
    <hr />

    In the very bottom of my style.css file I added:

    .ad-top {
    	text-align: center;
    }

    and I almost forgot, my website is: http://www.igotitonclearance.com
    Any help would be greatly appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Love your site!

    .ad-top {
    margin:30px;
    text-align:center;
    }

    This was a one minute job to find out with Firebug.
    Get Firefox and then the Firefox addon Firebug. You can then click anywhere in your site and see what piece of the css influences that piece of your site and you can even make changes but not save them, so it is safe to practice.

    Thread Starter igioc

    (@igioc)

    Thanks so much! You are GREAT!

    On my way to get Firebug for Firefox right now!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Trying to move text down a bit’ is closed to new replies.