Jump to content

cm123077

Members
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

cm123077's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. On this page: http://pixelitforward.com/grapevine/ (In Firefox, at least...having some issues in other browsers), you can see the quotes in blocks. There is an opening quotation mark, and it is positioned exactly where I want it. I am trying to get the closing mark to look the sdame on the other end, but I can not seem to get it to work. When I try to position it lower, so that it comes out of the box a bit like the to one does, it just increases the size of the box. any ideas on this? Thanks
  2. It is very difficult to read. Unfortunately, that is not because of pastebin....thats the way it is actually written in the file. this is somethign someone else created,.
  3. I have some PHP code that creates a data collection form. At the moment, several of the fields are required or the form is not submitted. I want to change this for the "review title" and "star rating" fields. Can anyone help me with this? I'm sure I just need to change a simple false to a true, but I'm not sure where. Code snippet below. Thanks. http://pixelitforward.com/grapevine/ http://pastebin.com/BKUctcGt <----- Code pasted to pastebin Also, There is a set of quotation marks, the first of which you can see on the page. For some reason, the closing mark is not visible. Can someone help me figure out why? I see it in the code.
  4. Thanks everyone. I figured it out. Now some CSS & a background image & it will be done
  5. It is not used anywhere else
  6. I am working on this site: http://174.120.16.66/~thomasse/ As you may have noticed, there are 3 blurb div areas at the bottom of the page. These are created in the file home.php. Unfortunately, this is producing an extra div tag, pushing the MiniTweets box to the right, covering the next box. How do I change the formula in the code so it does not produce the first, extra div tag? Thanks. This is the code producing this content... <div id="blurbs"><div id="twitter"><?php echo do_shortcode('[minitwitter username="Thomas_Services" limit=2]'); ?></div> <?php for ($i = 2; $i <= 3; $i++) { ?> <?php query_posts('page_id=' . get_pageId(html_entity_decode(get_option('simplepress_service_'.$i)))); while (have_posts()) : the_post(); ?> <?php $icon = ''; $icon = get_post_meta($post->ID, 'Icon', true); $tagline = ''; $tagline = get_post_meta($post->ID, 'Tagline', true); ?> <div <?php if ($icon <> '') { ?>style="background-image: url(<?php echo esc_url($icon); ?>);"<?php }; ?>> <span class="titles"><?php the_title(); ?></span> <?php global $more; $more = 0; the_excerpt(); ?> <br class="clear" /> <span class="readmore"><a href="<?php the_permalink(); ?>"><?php esc_html_e('read more','SimplePress'); ?></a></span> </div> <?php endwhile; wp_reset_query(); ?> <?php }; ?> <br class="clear" /> </div> Here is the code for the page in its entirety <?php get_header(); ?> <?php if (get_option('simplepress_featured') == 'on') get_template_part('includes/featured'); ?> <?php if (get_option('simplepress_quote') == 'on' && get_option('simplepress_blog_style') == 'false') { ?> <div id="quote"> <div> <?php echo (get_option('simplepress_quote_one')); ?> <br class="clear" /> <span><?php echo (get_option('simplepress_quote_two')); ?></span> </div> </div> <?php }; ?> <?php if (get_option('simplepress_blog_style') == 'on') { ?> <div id="content" style="margin-top: 40px;"> <div class="content_wrap"> <div class="content_wrap"> <div id="posts"> <?php get_template_part('includes/entry'); ?> </div><!-- #posts --> <?php $gallery_cat = get_option('simplepress_gallery'); if(is_category($gallery_cat)) { } else { get_sidebar(); }; ?> </div><!-- .content_wrap --> </div><!-- .content_wrap --> </div><!-- #content --> <?php }; ?> </div><!-- .wrapper --> <?php if (get_option('simplepress_blog_style') == 'false') { ?> <div id="strip-top"></div> <div id="strip"> <div> <?php echo (get_option('simplepress_strip')); ?> <img class="arrow" src="<?php bloginfo('template_directory'); ?>/images/strip-arrow.png" alt="" /> </div> </div> <div class="wrapper"> <div id="blurbs"><div id="twitter"><?php echo do_shortcode('[minitwitter username="Thomas_Services" limit=2]'); ?></div> <?php for ($i = 2; $i <= 3; $i++) { ?> <?php query_posts('page_id=' . get_pageId(html_entity_decode(get_option('simplepress_service_'.$i)))); while (have_posts()) : the_post(); ?> <?php $icon = ''; $icon = get_post_meta($post->ID, 'Icon', true); $tagline = ''; $tagline = get_post_meta($post->ID, 'Tagline', true); ?> <div <?php if ($icon <> '') { ?>style="background-image: url(<?php echo esc_url($icon); ?>);"<?php }; ?>> <span class="titles"><?php the_title(); ?></span> <?php global $more; $more = 0; the_excerpt(); ?> <br class="clear" /> <span class="readmore"><a href="<?php the_permalink(); ?>"><?php esc_html_e('read more','SimplePress'); ?></a></span> </div> <?php endwhile; wp_reset_query(); ?> <?php }; ?> <br class="clear" /> </div> <span class="blurbs_shadow"></span> </div> <?php }; ?> <?php get_footer(); ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.