Forums

How can I make my title bigger (and time and date smaller)? (23 posts)

  1. Mayasa
    Member
    Posted 1 year ago #

    Hi,

    I was wondering how can i make my title bigger and time and date smaller?
    example http://www.ifeelprinty.com/art-2/

    here is my code:

    <?php
    /*
    Template Name: PageOfPosts
    */
    
    get_header(); ?>
    
    <div id="content" class="narrowcolumn">
    
    <?php
    if (is_page() ) {
    $category = get_post_meta($posts[0]->ID, 'category', true);
    }
    if ($category) {
      $cat = get_cat_ID($category);
      $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
      $post_per_page = 15; // -1 shows all posts
      $do_not_show_stickies = 1; // 0 to show stickies
      $args=array(
        'category__in' => array($cat),
        'orderby' => 'date',
        'order' => 'DESC',
        'paged' => $paged,
        'posts_per_page' => $post_per_page,
        'caller_get_posts' => $do_not_show_stickies
      );
      $temp = $wp_query;  // assign orginal query to temp variable for later use
      $wp_query = null;
      $wp_query = new WP_Query($args);
      if( have_posts() ) :
    		while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
    	    <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
            <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?> </a></h2>
            <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
            <div class="entry">
              <?php the_content('Read the rest of this entry'); ?>
            </div>
            <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></p>
          </div>
        <?php endwhile; ?>
        <div class="navigation">
          <div class="alignleft"><?php next_posts_link('Older Entries') ?></div>
          <div class="alignright"><?php previous_posts_link('Newer Entries') ?></div>
        </div>
      <?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
    		<?php get_search_form(); ?>
    
    	<?php endif; 
    
    	$wp_query = $temp;  //reset back to original query
    
    }  // if ($category)
    ?>
    
    	</div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    Thank you in advance.

  2. Root
    Member
    Posted 1 year ago #

    look in yr style.css

  3. Mayasa
    Member
    Posted 1 year ago #

    hmm i'm not really knowledgeable...

    here is my style sheet? where do i need to make the change??

    /*
    Theme Name: AutoFocus+
    Theme URI: http://fthrwght.com/
    Description: AutoFocus+ is a clean and simple WordPress child theme developed for photographers looking to showcase their work.
    Author: Allan Cole
    Author URI: http://fthrwght.com/
    Template: thematic
    Version: 1.2
    Tags: theme options, photoblogging, fixed-width, one-column, threaded-comments, white
    .
    
    Changelog
    1.2 Released 10-21-2010
    — Added WP 3.0 Custom Menus.
    — Fixed Thematic 0.9.7.7 layout issues.
    
    1.1 Released 05-20-2010
    — Fixed JS Errors for WordPress 3.0.
    
    1.0 Released 2010-03-29
    — Initial release
    
    AutoFocus+ © Allan Cole for http://fthrwght.com/
    .
    */
    
    /* Reset browser defaults */
    @import url('../thematic/library/styles/reset.css');
    
    /* Apply basic typography styles */
    @import url('../thematic/library/styles/typography.css');
    
    /* Apply a basic layout
    @import url('../thematic/library/layouts/2c-r-fixed.css'); */
    
    /* Apply basic image styles */
    @import url('../thematic/library/styles/images.css');
    
    /* Prepare theme for plugins */
    @import url('../thematic/library/styles/plugins.css');
    
    /*	Layout
    -------------------------------------------------------------- */
    body {min-width:832px}
    #header {width:800px; margin:22px auto;}
    #branding {}
    #access {position:relative; overflow:hidden;}
    #wrapper {position:relative;z-index:20}
    #main {width:800px; margin:0 auto; padding:0;overflow:visible; position:relative;z-index:25}
    #container {width:800px;display:table;padding:0; margin:0 0 66px;}
    #content {margin:44px 0 0; width:800px; overflow:visible}
    .main-aside {width:392px; float:left; position:relative;}
    #secondary {clear:right}
    #footer {clear:both; width:800px; margin:0 auto}
    #subsidiary {width:800px; margin:0 auto; overflow:hidden}
    #siteinfo {clear:both; }
    
    /*	Global
    -------------------------------------------------------------- */
    html {margin:0;padding:0}
    body {color:#999999;background-color:#FFFFFF;font-size:12px;line-height:22px;font-family: helvetica, arial, sans-serif;}
    h1, h2, h3, h4, h5, h6 {font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;font-weight:400}
    a {text-decoration:none;}
    a:link, a:visited {color:#00CCFF;}
    a:hover {color:silver;}
    span.hide {visibility:hidden;}
    
    /*	Header
    -------------------------------------------------------------- */
    #header {display:table;vertical-align:middle;position:relative;padding:0px 0;}
    #branding {width:292px;margin:0 16px 0 0;float:left;clear:none;display:block;}
    #blog-title a {
    background:url(img/logo.png) no-repeat top center;
    display:block;
    text-indent:-9000px;
    width:295px;
    height: 94px;
    }
    #blog-title a {font-weight:400;}
    #blog-description {padding-top:0; padding-bottom:12px;margin:0;font-size:11px;letter-spacing:0.090em;line-height:16px;font-weight:200;font-family: helvetica, arial, sans-serif;}
    
    /*	Menu
    -------------------------------------------------------------- */
    #access {padding:10;float:right;margin:0 0 0 -612px;clear:right;width:494px;display:block;line-height:22px; z-index:98;overflow:visible;}
    #access .skip-link {display:none;}
    
    .menu {float:right;}
    .menu ul {margin:0;padding:0;}
    .menu ul li {display:inline;float:left;}
    .menu ul li a {padding:0 12px 0 12px;margin:0;font-size:12px;line-height:22px;letter-spacing:0.025em;font-weight:400;}
    .menu ul li ul li a {padding:1px 8px 0;height:21px;font-size:11px;letter-spacing:0;font-weight:400;}
    .menu ul li ul li a:before {content:"— ";}
    .menu ul li a[title="Home"] {top:1px;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;font-style:italic;font-size:13.5px}
    
    .sf-menu, .sf-menu *{margin:0; padding:0; list-style:none}
    .sf-menu{line-height:1.0}
    .sf-menu ul{position:absolute; top:-999em; width:10em;}
    .sf-menu ul li{width:100%}
    .sf-menu li:hover{visibility:inherit;}
    .sf-menu li{float:left; position:relative}
    .sf-menu a{display:block; position:relative}
    .sf-menu li:hover ul,
    .sf-menu li.sfHover ul{left:0; top:2.5em;z-index:99}
    .sf-menu ul {border-width:0 0 0 1px; border-style:dotted;}
    .sf-menu ul a {border-width:0; border-style:dotted;}
    ul.sf-menu li:hover li ul,
    ul.sf-menu li.sfHover li ul{top:-999em}
    ul.sf-menu li li:hover ul,
    ul.sf-menu li li.sfHover ul{left:10em;top:0}
    ul.sf-menu li li:hover li ul,
    ul.sf-menu li li.sfHover li ul{top:-999em}
    ul.sf-menu li li li:hover ul,
    ul.sf-menu li li li.sfHover ul{left:10em;top:0}
    
    .sf-menu{float:left}
    .menu a{text-decoration:none;display:block;}
    .sf-menu li:hover,
    .sf-menu li.sfHover,
    .sf-menu a:focus,
    .sf-menu a:hover,
    .sf-menu a:active {outline:0;}
    .sf-menu li:hover ul,
    .sf-menu li.sfHover ul{top:21px;left:8px;}
    .sf-menu li.sfHover ul li ul,
    .sf-menu li.sfHover ul li ul li ul{top:0;}
    .sf-menu ul ul{ margin-top:0}
    .sf-menu ul a:hover{color:#FFF;background-color:#000;}
    
    /*	Navigation
    -------------------------------------------------------------- */
    .navigation .meta-nav {}
    .nav-previous {padding:0 8px; float:left; width:40%;text-align:left}
    .nav-next {padding:0 8px; float:right; width:40%; text-align:right}
    
    #nav-above {width:1000px;height:0px;margin:0 -100px;padding:0;display:inline-block;position:fixed;top:45%;z-index:1;font-size:88px;line-height:22px;font-family: Courier New, Courier, monospace, sans-serif;}
    #nav-above a {line-height:22px;height:22px;display:inline;}
    #nav-above .nav-previous {padding:0 8px; float:left; width:50px;height:22px;line-height:22px;}
    #nav-above .nav-next {padding:0 8px; float:right; width:50px; text-align:right;height:22px}
    
    #nav-below {width:800px;margin:66px 0 88px;clear:both;float:none;display:table;}
    #nav-below h3 {font-size:32px;line-height:44px;padding:0 8px;}
    #nav-below h3 a,
    
    /* Single Page Navigation */
    .single #nav-below {padding-top:66px;}
    .single #nav-below .nav-previous {padding:0 8px; margin-top:22px; float:left; width:272px;}
    .single #nav-below .nav-next {padding:0 8px; margin-top:22px; float:right; width:272px; text-align:left}
    .single #nav-below .nav-excerpt {margin-top:0;}
    .single #nav-below .nav-excerpt p {margin: 0;padding:0;font-size:11px;letter-spacing:0.025em;line-height:22px;}
    .single #nav-below a {font-weight:600;}
    .single #nav-below h3 a {font-weight:400;}
    
    /*	Content
    -------------------------------------------------------------- */
    #content {clear:both;float:none;padding:0; margin:0;}
    #content .hentry {clear:both;float:none;margin:0; padding:0; position:relative; z-index:3}
    #content .page-title {padding:0 8px 0 16px;margin:22px 0 88px 204px;width:572px;float:right;clear:left;font-size:12px;line-height:22px;border-left:1px dotted #CCC;font-family: helvetica, arial, sans-serif;}
    #content .page-title span {font-size:48px;line-height:66px;font-style:italic;letter-spacing:-1px;display:block;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    #content .entry-title {padding:0 8px;margin:0 0 22px;font-size:48px;line-height:44px;letter-spacing:-1px;font-weight:200;float:none;clear:both;}
    #content .entry-title a {font-weight:200}
    #content .entry-content {padding:0;margin:0 306px 0 0;clear:none;width:494px;line-height:22px;float:left;display:block;}
    #content .entry-content object {margin-left:-8px;}
    #content .entry-content h1 {font-size:24px;padding:0 8px;margin:22px 0;font-weight:400}
    #content .entry-content h2,
    #content .entry-content h3 {font-size:20px;padding:0 8px;margin:22px 0;font-weight:400}
    #content .entry-content h4,
    #content .entry-content h5,
    #content .entry-content h6 {font-size:15px;line-height:22px;padding:0 8px;margin:22px 0;font-weight:400}
    #content .entry-content ul {list-style:disc;margin-left:24px;}
    #content .entry-content ol {list-style:decimal;margin-left:24px;}
    #content .entry-content ol ol {list-style:lower-alpha;margin-left:24px;}
    #content .entry-content li {display:list-item;border:none;margin:0;padding:0;}
    #content .entry-content hr {height:0;border:1px dotted #CCC;border-width:1px 0 0;}
    #content .entry-content div,
    #content .entry-content p,
    #content .entry-content pre,
    #content .entry-content address {padding:0 8px;margin:0 0 22px;}
    #content .entry-content blockquote {margin:0 0 0;padding:8px 8px 0;border:1px dotted #CCC;border-width:0 0 0 1px;font-style:italic;font-size:15px;letter-spacing:0.025em;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    #content .entry-content blockquote blockquote {margin-left:8px;}
    #content .entry-content table {border:1px dotted #CCC;border-width:0 0 0 1px}
    #content .entry-content th {font-style:italic;font-size:15px;font-weight:400;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    #content .entry-content td,
    #content .entry-content th {padding:4px 8px;text-align:left;border:1px dotted #CCC;border-width:0 0 1px 1px}
    #content .entry-content .gallery {margin-bottom:0;}
    #content .entry-content .gallery .col-5 {}
    #content .entry-content .gallery a img {border:none;}
    #content .entry-content .gallery img,
    #content .entry-content .gallery dl,
    #content .entry-content .gallery dt,
    #content .entry-content .gallery dd {margin:0;padding-bottom:0;}
    #content .entry-content .gallery br {padding-bottom:22px;display:block;}
    #content .entry-content div.gallery-row {margin-bottom:22px;}
    #content .entry-content div.wp-caption {padding:8px 8px 0;margin-bottom:11px;border:1px dotted #CCC;border-width:0;display:block;text-align:left;background-color:transparent;}
    #content .entry-content div.wp-caption.alignleft {padding-right:6px;margin-right:16px;border-width:0 1px 0 0;}
    #content .entry-content div.wp-caption.alignright {padding-left:16px;padding-right:0;margin-left:16px;margin-right:-2px;border-width:0 0 0 1px;}
    #content .entry-content div.wp-caption.aligncenter,
    #content .entry-content div.wp-caption.alignnone {margin-bottom:11px;padding-bottom:11px;border-width:0 0 1px 0;}
    #content .entry-content div.wp-caption img {margin:0;padding:0;border:none}
    #content .entry-content .gallery-caption,
    #content .entry-content div.wp-caption p.wp-caption-text{padding:0;margin:8px 0 0;font-size:10px;line-height:16px;letter-spacing:0.05em;}
    #content .entry-meta {float:right;clear:none;margin-left:-614px;width:164px;padding:11px 8px 11px 16px;display:block;border:1px dotted #CCC;border-width:0 0 0 1px;font-size:11px;letter-spacing:0.025em;line-height:22px;}
    #content .entry-meta abbr {text-decoration:none;border:none;}
    #content .entry-meta span {display:block;}
    #content .entry-meta span.meta-prep-author {display:block;float:left;padding-right:3px;}
    #content .entry-meta .meta-sep {display:none;}
    #content .entry-utility {padding:0 8px;margin-left:-520px;width:282px;float:right}
    #content .edit-link {padding:0;font-size:11px;letter-spacing:0.025em;line-height:22px;}
    #content .edit-link a {background-color:red;color:#FFF;display:inline-block;padding:0 8px;}
    #content .edit-link a:before {content:"✎ ";}
    #content .photo-credit {position:absolute;padding:16px;display:block;width:768px;height:100%;z-index:2;text-align:left;}
    #content .photo-credit a {font-weight:600;}
    #content .hentry:hover .photo-credit {display:block;}
    #content .page-link {font-weight:bold; line-height:22px; padding:0 0 22px 0; margin-right:16px; word-spacing:16px;}
    #content .page-link a {font-weight:normal; padding:0; text-decoration:none}
    #content .excerpt-arrow {font-size:20px;line-height:5px;display:inline-block;}
    
    /* Single Page Styles */
    .single #content {margin-bottom:66px;}
    .single #content .entry-title {margin-bottom:22px;line-height:44px;position:relative;z-index:30;}
    .single #content .entry-meta {margin-left:-614px;width:164px;padding:11px 8px 11px 16px;display:block;border:1px dotted #CCC;border-width:0 0 0 1px;}
    .single #content .entry-meta .entry-date {margin:0 0 11px;font-size:48px;line-height:44px;letter-spacing:-1px;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    .single #content .entry-utility {padding:0 8px;margin-left:0px;width:100%;float:none;clear:none;}
    .single .hentry .post-image-container img {display:none;}
    .single .post-image-container,
    .single .post-video-container {padding:0;margin-bottom:44px;text-align:center;}
    .single .post-video-container span,
    .single .post-video-container object {margin:0 auto;text-align:center;}
    
    /* Image Grid for the Home Page */
    .blog #content {margin-top:0px;padding:0;}
    .blog #content .hentry {width:396px;height:300px;overflow:hidden;float:left;margin:0 4px 4px 0;padding:0;clear:none;position:relative;}
    .blog #content .hentry.p1 {width:100%;margin-right:0;}
    .blog #content .hentry.p2 {width:602px;}
    .blog #content .hentry.p3 {width:194px;margin-right:0;}
    .blog #content .hentry.p4 {width:296px;}
    .blog #content .hentry.p5 {width:500px;margin-right:0;}
    .blog #content .hentry.p6 {width:194px;}
    .blog #content .hentry.p7 {width:302px;}
    .blog #content .hentry.p8 {width:296px;margin-right:0;}
    .blog #content .hentry.p9 {width:398px;}
    .blog #content .hentry.p10 {width:398px;margin-right:0;}
    .blog #content .hentry.p11 {width:100%;margin-right:0;}
    .blog #content .hentry.p12 {width:602px;}
    .blog #content .hentry.p13 {width:194px;margin-right:0;}
    .blog #content .hentry.p14 {width:296px;}
    .blog #content .hentry.p15 {width:500px;margin-right:0;}
    .blog #content .hentry.p16 {width:194px;}
    .blog #content .hentry.p17 {width:302px;}
    .blog #content .hentry.p18 {width:296px;margin-right:0;}
    .blog #content .hentry.p19 {width:398px;}
    .blog #content .hentry.p20 {width:398px;margin-right:0;}
    .blog #content .hentry.p21 {width:100%;margin-right:0;}
    .blog #content .hentry.p22 {width:602px;}
    .blog #content .hentry.p23 {width:194px;margin-right:0;}
    .blog #content .hentry.p24 {width:296px;}
    .blog #content .hentry.p25 {width:500px;margin-right:0;}
    .blog #content .hentry.p26 {width:194px;}
    .blog #content .hentry.p27 {width:302px;}
    .blog #content .hentry.p28 {width:296px;margin-right:0;}
    .blog #content .hentry.p29 {width:398px;}
    .blog #content .hentry.p30 {width:398px;margin-right:0;}
    .blog #content .hentry.sticky-feature-post {width:800px;height:300px;float:none;clear:both;}
    
    /* Home Page Styles */
    .blog #content .entry-title {position:relative;z-index:12;margin:0;padding:0;font-size:24px;line-height:33px;letter-spacing:-1px;width:100%;}
    .blog #content .entry-title a {display:table-cell;width:100%;padding:16px 16px 0;}
    .blog #content .hentry.sticky-feature-post .entry-title a,
    .blog #content .hentry.sticky-feature-post .entry-meta abbr {font-style:italic;}
    .blog #content .entry-title .comments-link {font-size:16px;line-height:33px;float:left;}
    .blog #content .entry-title .comments-link a {display:inline-block;padding:16px 0 0 16px;}
    .blog #content .page-link {font-size:16px;display:none;}
    .blog #content .entry-meta {position:absolute;z-index:10;top:0;left:0;margin:0;padding:16px 0 0 16px;display:block;width:inherit;float:none;border:none;}
    .blog #content .entry-meta abbr {font-size:24px;line-height:33px;letter-spacing:-1px;text-decoration:none;border:none;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    .blog #content .entry-meta .entry-title {font-size:24px;line-height:33px;text-decoration:none;border:none;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    .blog #content .entry-meta a {padding:0 16px 0 0;display:block;width:100%;}
    .blog #content .post-image-container {display:block;top:0;left:0;position:absolute;z-index:2;}
    .blog .hentry .post-image-container img {display:none;}
    .blog #content .entry-content {line-height:22px;padding:11px 0;margin:0;position:relative;z-index:10;left:0;width:100%;max-width:394px;}
    .blog #content .entry-content p {margin:0;padding:0 16px 0;line-height:16.5px;}
    .blog #content .entry-content a {display:inline-block;line-height:16.5px;font-style:italic;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;height:inherit;width:inherit;}
    .blog #content .entry-content,
    .blog #content .hentry h2 {margin-left:-9999px;}
    .blog #content .entry-utility {position:absolute;top:0;right:0;width:35px;z-index:16}
    .blog #content .edit-link a {margin-left:-8px;width:35px;}
    .blog #content .hoverbg {display:block;width:100%;height:100%;position:absolute;top:0;left:0;z-index:8;}
    
    /* Archive & Search Page Styles */
    .archive #content .hentry,
    .search #content .hentry {clear:both;min-height:220px;margin-bottom:66px;display:table;}
    .archive #content .post-image-container,
    .archive #content .post-video-container,
    .search #content .post-image-container,
    .search #content .post-video-container {float:left;margin-right:-204px;}
    .archive #content .entry-title,
    .search #content .entry-title {float:none;clear:right;margin-left:204px;}
    .archive #content .entry-meta,
    .search #content .entry-meta,
    #content .entry-meta.blog {margin-top:-11px;}
    .archive #content .entry-content,
    .search #content .entry-content {float:left;clear:none;margin-right:204px;margin-left:204px;width:392px;}
    .archive #content .entry-content p,
    .search #content .entry-content p {padding:0 8px;}
    .search #content .noresults .entry-title,
    .four04 #content .error404 .entry-title {font-style:italic;}
    .search #content .noresults {margin-left:204px;}
    .search #content .noresults .entry-title,
    .search #content .noresults .entry-content,
    .four04 #content .error404 .entry-content {margin-left:0;width:392px;}
    .search #content form#noresults-searchform,
    .four04 #content form#error404-searchform {margin-left:10px;}
    .search #content .noresults,
    #content div.error404 {border-left:1px dotted #CCC;padding:22px 0 22px 8px;}
    
    /* Page Styles */
    .page #content .hentry {margin-bottom:66px;display:table;}
    
    /* Author Page Styles */
    .author #content .page-title span {margin-top:2px;padding-bottom:20px;font-size:36px;line-height:44px;}
    #content #author-info {width:188px;float:left;clear:left;margin:22px -612px 0 0;}
    #content #author-info h2.entry-title {display:none}
    #content #author-info span.n {display:none;}
    #content #author-info .photo.avatar {width:88px;height:88px;float:right;}
    #content #author-info #author-email {position:absolute;top:88px;left:222px;width:612px;}
    #content #author-info #author-email a:before {content:"✉ ";}
    #content #author-info #author-email a:after {content:" this author";}
    
    /* Thematic Page Template Styles */
    ul#links-page,
    ul#archives-page{ list-style:none;  margin-left:0;  overflow:hidden; }
    li.content-column{ float:left;  margin-right:20px;  width:45%; list-style:none;}
    .page #content .edit-link {margin-left:0;}
    #content div.error404 .entry-content,
    #content .noresults .entry-content {margin-bottom:0;}
    #content div.error404 {margin-left:204px;}
    
    /*	Comments
    -------------------------------------------------------------- */
    #comments {padding:0;margin-right:408px;clear:both;float:none;}
    #comments,
    #comments input,
    #comments textarea {line-height:22px}
    #comments code {font-size:12px; line-height:22px}
    #comments h3 {font-size:32px;line-height:42px;padding:0 8px;}
    #comments-list {padding:0 0 22px 0}
    #comments-list ol,
    #comments-list ul {list-style:none;margin:0;padding:0;}
    #comments-list ol {border-top:1px dotted #000; border-bottom:none; margin:0 0 22px 0}
    #comments-list li {background:transparent; border-bottom:1px dotted #000; padding:21px 8px 0; position:relative}
    #comments-list li.alt {background:transparent}
    #comments-list li.bypostauthor {border-top:1px dotted #000;margin-top:-1px;}
    #comments-list li.bypostauthor .avatar {border:3px solid #000;}
    #comments-list ul li {border:1px dotted #000; border-width: 1px 0 0; margin:0 -8px 22px 96px;}
    #comments-list li .avatar {position:absolute; top:22px; right:22px; width:50px; height:50px}
    #comments-list ul.children li {width:374px;margin-right:-96px;}
    #comments-list ul.children li.depth-3 {margin-left:94px;}
    #comments-list ul.children li.depth-4 {margin-left:92px;}
    #comments-list ul.children li.depth-4 {margin-left:90px;}
    #comments-list .comment-author {font-size:22px;font-weight:400; font-style:italic; padding:0; font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    #comments-list .comment-meta {font-size:11px; padding:0;}
    #comments-list .comment-meta a {text-decoration:none}
    #comments-list .comment-meta a:active,
    #comments-list .comment-meta a:hover {}
    #comments-list .comment-content {margin:22px 0;}
    #comments-list .comment-content p {margin:0 0 22px; padding:0;}
    #comments-list .comment-content ul,
    #comments-list .comment-content ol {list-style:disc;margin-left:16px;}
    #comments-list .comment-content li {display:list-item;border:none;margin:0;padding:0;}
    #comments-list .comment-content blockquote {margin:0 0 0 16px;font-style:italic;font-size:14px;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    #comments-list .edit-link {margin-left:0;clear:both;display:block;}
    .comment-reply-link {text-align:right;font-size:14px;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    .comment-reply-link a {font-style:normal; text-decoration:none; margin:0 0 22px 0; display:inline-block;}
    .comment-reply-link a:before {content:"↩ ";}
    .comment-reply-link a:active,
    .comment-reply-link a:hover {}
    .comment-navigation {font-weight:bold; line-height:22px; padding:0 0 22px 0; margin-right:16px; word-spacing:16px;}
    .comment-navigation a {font-weight:normal; text-decoration:none}
    .comment-navigation a:active,
    .comment-navigation a:hover { }
    .comment-navigation a,
    .comment-navigation span {margin-right:0.5em;word-spacing:normal;}
    #trackbacks-list h3 {border-bottom:1px dotted #000;line-height:43px;}
    #trackbacks-list ol {padding:22px 0;margin:0;list-style-position:outside;}
    #trackbacks-list ol li {display:block;padding:0;margin-bottom:22px;}
    #trackbacks-list ol li .comment-content {display:none;}
    #trackbacks-list ol li .comment-author {display:block;}
    #trackbacks-list ol li .comment-author a.url {font-size:14px;font-style:italic;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    #respond {margin-bottom:22px; overflow:hidden; padding:22px 0 0 0; position:relative}
    #respond p {padding:0 8px;margin-bottom:22px;}
    #respond .form-label {padding:0 8px;line-height:22px;}
    #comments-list #respond {margin:0 0 22px 0; padding:22px 16px}
    #comments-list ul #respond {border-top:1px dotted #000; margin:0}
    #cancel-comment-reply {width:88px; position:absolute;top:22px; right:8px; text-align:right;font-size:14px;line-height:11px;font-family: "Garamond", "Hoefler Text", Times New Roman, Times, serif;}
    #cancel-comment-reply a { }
    #cancel-comment-reply a:before {content:"× ";}
    #respond .required {font-weight:bold}
    .form-section label {font-size:11px}
    .form-section input {margin:0 0 22px 0; width:98%}
    .form-section textarea {width:99%;height:128px;}
    #form-allowed-tags {display:none;}
    #form-allowed-tags p {font-size:11px; line-height:22px; margin:0; display:inline-block;}
    #form-allowed-tags span {font-style:italic;line-height:22px;}
    #form-allowed-tags code {font-size:11px; line-height:normal; line-height:22px; display:inline-block;}
    .form-submit {padding:22px 0 0 0; text-align:right}
    .subscribe-to-comments {float:left; font-size:11px; margin:0; padding:22px 0 0 0}
    .solo-subscribe-to-comments {font-size:11px; padding:22px 0 0 0}
    .comment_license {clear:both; font-size:11px; margin:0; padding:22px 0 0 0}
    
    /*	Sidebars
    -------------------------------------------------------------- */
    #subsidiary {margin:0 0 44px;display:table;clear:both;}
    #subsidiary .aside {margin:0;float:left;width:188px;}
    #subsidiary .sub-aside {margin-right:16px;}
    #single-sidebar {padding:11px 0 0 8px;margin:44px 0 0 -612px;width:180px;clear:right;float:right;font-size:11px;border-left:1px dotted #000;letter-spacing:0.025em;line-height:22px;}
    .page #content #single-sidebar {margin-top:0;}
    #intro-sidebar {width:100%;float:none;clear:both;margin:0;}
    #intro-sidebar ul,
    #intro-sidebar li.widgetcontainer {margin:0;}
    #leader-board-wrapper {width:100%;float:none;clear:both;}
    #leader-board-wrapper #leader-board-sidebar {width:800px;margin:10px auto 0;position:relative;float:none;}
    #leader-board-wrapper #leader-board-sidebar ul {text-align:center;}
    
    /*	Asides
    -------------------------------------------------------------- */
    .aside {margin:44px 0;float:left; position:relative;}
    .aside h3 {padding:0 8px;font-size:16px;margin:0;}
    .aside ul {padding:0;margin:0;list-style:none;}
    .aside ul li.widgetcontainer {margin-bottom:22px;line-height:22px;font-size:11px;}
    .aside ul li.widgetcontainer li {padding:5px 8px 5px;margin:0;line-height:12px;}
    .aside ul li.widgetcontainer li a {padding:0;margin:0;}
    .aside ul li.widgetcontainer li ul {padding:5px 0 0;margin:0 0 0 -8px;}
    .aside ul li.widgetcontainer li ul li a:before {content:"— ";}
    .aside ul li.widgetcontainer li ul li ul {padding:5px 0 0;margin:0 0 0 8px;}
    .aside ul li.widget_thematic_search {margin-bottom:44px;}
    .aside ul li.widget_thematic_search input#s {width:177px;height:14px;padding:2px;}
    .aside ul li.widget_text div img {margin:0 -8px;}
    .aside ul li.widget_text div,
    .aside ul li.widget_tag_cloud div {padding:0 8px;}
    .aside ul li.widget_calendar table {width:188px;}
    .aside ul li.widget_calendar caption {text-align:left;padding:0 8px;}
    .aside ul li.widget_calendar tbody tr {text-align:center;}
    .aside ul li.widget_calendar td#next {text-align:right;}
    
    /*	Footer
    -------------------------------------------------------------- */
    #siteinfo {clear:both;padding:0 8px 44px;font-size:11px;}
    
    /*	Grid
    -------------------------------------------------------------- */
    .gridsystem {background-image: url('img/grid.png'); background-position: top center; background-repeat: repeat-y;margin:0;padding:0}
    
    /*	Default styles for Images
    -------------------------------------------------------------- */
    .entry-content img{margin:0 0 22px 0;}
    .alignleft,
    img.alignleft,
    img.align-left{float:left;margin:0 16px 22px -8px;display:block;}
    .alignright,
    img.alignright,
    img.align-right{display:block;float:right;margin:0 -8px 22px 16px}
    .aligncenter,
    div.aligncenter,
    img.aligncenter{margin:0 auto 22px auto; display:block; float:none; clear:both}
    .wp-smiley{max-height:13px; margin:0 !important}
  4. Root
    Member
    Posted 1 year ago #

    heck
    let me look

  5. Root
    Member
    Posted 1 year ago #

    a quick pointer
    no need to paste yr css here
    we got tools to see it anyway

  6. Mayasa
    Member
    Posted 1 year ago #

    oh, i have no idea heh .. sorry

  7. Root
    Member
    Posted 1 year ago #

    its ok
    yr in newbie hell but it does get better
    right down the bottom of yr css add this

    h2 a {font-size: 2em}

    if it works adjust from there

  8. Mayasa
    Member
    Posted 1 year ago #

    tried, dont know if it worked.

    I think what I mean is I want to make the title of posts in this page (which is a pageofposts) http://www.ifeelprinty.com/art-2/ bigger. not in the post itself, you know what i mean??

  9. Mayasa
    Member
    Posted 1 year ago #

    also......... i'm trying to get rid of some customs fields but they seem to stay there even tho i hit the delete button.. they always come back, what gives

  10. Root
    Member
    Posted 1 year ago #

    see its working fine
    let me help you
    if u right click you can view the source in yr browser
    from there u can see what the css selector is
    often u need to do a hard refresh for css changes to show in yr browser
    rome was not built in a day my friend

  11. Mayasa
    Member
    Posted 1 year ago #

    holysh*t you da man.

    i guess im impatient.

    any idea on how to get rid of those custom fields? or are they stuck there because of the theme.......?

    thank you so much

  12. Root
    Member
    Posted 1 year ago #

    whooooooooooooooa fella
    u added a new question
    whats the custom field problem ?
    i will say this
    somethings that get in the database can be irritatingly persistent

  13. Root
    Member
    Posted 1 year ago #

    ok
    yr date
    this is butt ugly but it will fix it but its a horrid kluge
    at the bottom of yr css do this

    h2 a small {font-size: 0.5 em}

    adjust from there

  14. Mayasa
    Member
    Posted 1 year ago #

    yeah well i figured if you're already here i'd use you for something else ;)

    custom fields

    name: image_tag
    value: <img src="http://www.ifeelprinty.com/wp-content/uploads/2010/11/CIMG1041.jpg" />

    name: image_url
    value: http://www.ifeelprinty.com/wp-content/uploads/2010/11/CIMG1041.jpg

    I think i want to get rid of them to see what happens.. in my front page http://www.ifeelprinty.com/ you have the photos, and if you click on one it takes you to the page of the post, and then there the photo is HUGE. but if you scroll down, there is the same photo, smaller. i want to get rid of the huge photo....... if thats possible. If not, that's ok.

  15. Root
    Member
    Posted 1 year ago #

    this is very theme dependant dude
    heck knows what the author did

  16. Mayasa
    Member
    Posted 1 year ago #

    lol

    ok, i guess i'll have to live with that blah

    did the date work? it looks the same to me

  17. Mayasa
    Member
    Posted 1 year ago #

    can i ask one more thing?

  18. Mayasa
    Member
    Posted 1 year ago #

    ok im gonna ask anyway,

    how to i move my logo a little bit more up????????

  19. Root
    Member
    Posted 1 year ago #

    is that image in yr css? or is it just an image ?

  20. Mayasa
    Member
    Posted 1 year ago #

    I don't know?

    this is how i added it..

    /*	Header
    -------------------------------------------------------------- */
    #header {display:table;vertical-align:middle;position:relative;padding:0px 0;}
    #branding {width:292px;margin:0 16px 0 0;float:left;clear:none;display:block;}
    #blog-title a {
    background:url(img/logo.png) no-repeat top center;
    display:block;
    text-indent:-9000px;
    width:295px;
    height: 94px;
    }
    #blog-title a {font-weight:400;}
    #blog-description {padding-top:0; padding-bottom:12px;margin:0;font-size:11px;letter-spacing:0.090em;line-height:16px;font-weight:200;font-family: helvetica, arial, sans-serif;}
  21. Root
    Member
    Posted 1 year ago #

    dude
    may be i can tell u something about myself
    in my time when there were a mere handful of users i did my share of heavy lifting in this forum
    and in several thousand support requests that is the worst css i ever saw by a country mile...........
    good luck any way
    maybe some one better qualified than i can help you

  22. Mayasa
    Member
    Posted 1 year ago #

    lol

    i wouldn't be able to see the worst css if i saw it, i know nothing about this.

    thank you so much for the help anyway, you helped more than you know!

  23. Root
    Member
    Posted 1 year ago #

    you gonna have huge fun and learn loads in wp
    but we been doing it for years
    good luck
    and enjoy !

Topic Closed

This topic has been closed to new replies.

About this Topic