Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • paste this into your style.css, then tweak it

    /* SUBSCRIPTION MANAGER STYLE */
    .subscription-manager {
    padding: 10px 0 20px 0;
    margin: 5px 0 0 55px;
    width: 650px;
    }
    
    div.wrap {
    background: #fafafa;
    padding: 5px 10px;
    margin: 20px 0;
    border: 1px solid #ccc;
    }
    
    div.wrap h2 {
    margin: .5em 0 1em 0;
    border-bottom: 2px solid #589bd2;
    }
    
    div.wrap fieldset {
    border: 1px solid #555;
    margin: 1em 0;
    padding: 5px 10px;
    }
    
    div.wrap fieldset legend {
    font-weight: bold;
    font-size: small;
    }
    
    div.wrap p.submit {
    text-align: right;
    }
    
    .updated {
    background: #B9D6EF;
    border: 1px solid #589bd2;
    margin: 1em 5% 10px;
    padding: 0 1em;
    }
    
    .updated-error {
    background-color: #FFA3A3;
    border: 1px solid #FF5D5D;
    }
    
    div.wrap form {
    margin: 0;
    padding: 0;
    }
    
    div.warp li {
    margin-bottom: 6px;
    line-height: 130%;
    }
    /* END SUBSCRIPTION MANAGER STYLE */

    If you use the Custom User Notification Email you can set the Login Redirect URL.

    I’m new to the blogging. Does it matter where I put the code? My guess would be next to the other stylesheet link? Any book recommendations for css and php?

    Thanks!

    Here’s my header.php code:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="https://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php $rss = get_option('rss'); $feedurl = get_option('feedurl'); if($rss !== "hide") { if($feedurl == NULL) { bloginfo('rss2_url'); } else { echo ''.$feedurl.'';} }?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <style type="text/css">#header {background-image: url(<?php bloginfo('template_url'); ?>/images/<?php $logo = get_option('logo'); $logo = get_option('logo'); if($logo !== "hide") { if($logo == NULL) { echo 'logo.gif'; } else { echo ''.$logo.'';} }?>);}</style>
    <?php wp_head(); ?>
    </head>
    <body>
    
    <div id="container">
    
      <!-- Header Begin -->
      <div id="header">
    
        <!-- Logo -->
        <h1 id="logo"><a href="<?php bloginfo('url'); ?>/" title="Return To Home Page &raquo; <?php bloginfo('name'); ?>" tabindex="1">
        <?php bloginfo('name'); ?>
        -
        <?php bloginfo('description'); ?>
        </a></h1>
    
      </div>
    
      <!-- Menu Begin -->
      <div id="menu">
    
        <ul>
          <li<?php if ( is_home() ) { echo ' class="current_page_item"'; } ?>><a href="<?php bloginfo('url'); ?>/">Home</a></li>
          <?php wp_list_pages('title_li=&depth=1'); ?>
        </ul>
    
        <!-- RSS Link -->
         <?php $rss = get_option('rss'); $feedurl = get_option('feedurl'); if($rss !== "hide") { if($feedurl == NULL) {
    	 echo "<a href='";
    	 bloginfo('rss2_url');
    	 echo "' class='subscribe-to-rss'>Subscribe to RSS</a>";
    	 } else {
    	 echo "<a href='";
    	 echo ''.$feedurl.'';
    	 echo "' class='subscribe-to-rss'>Subscribe to RSS</a>";
    	 } }
    	 ?>
    
      </div>
      <!-- Header End -->

    I too would like to tweak the style of the form. I didn’t see “do_action(‘wp_head’); in the header. Can I still link to the stylesheet?

Viewing 4 replies - 1 through 4 (of 4 total)