Here are the facts:
- Wordpress Theme Parent: Pytheas (I'm using a child theme)
- Site: http://longgame.org
- I am a beginner. I'm still learning the basics of CSS.
My Problem:
On the front page, there is a group of five "Highlights" where I will inserting text. Note the following image (which depicts the leftmost two):
That yellow-highlighting denotes an area that I can't seem to remove. I've done the following:
- Checked HTML element to confirm there's no accidental carriage return.
- Deleted the thing, whereby the next item - the "About" blurb, 'slid over' and exhibited the same behavior.
- Searched through my child theme in order to determine if I goofed up (undoubtedly the problem, but I can't find it).
I don't know when this started happening, but it's within the past few days that I've been trying my luck at all this Wordpressy stuff.
As I mentioned, I'm a beginner. Please let me know if I can provide further data to improve the odds of correcting this.
Thank you, in advance, for any recommendations you can offer.
EDIT: I was unsure what code, in particular was the culprit, especially since I wouldn't even know how to edit anything php-ish. I've simply never tried. :)
Anyway, perhaps this bit from the parent theme? It's from home-highlights.php - so let me know if I'm way off.
<div class="grid-container clearfix">
<?php
$count=0; //set counter var
foreach($hp_highlight_posts as $post) : setup_postdata($post); //start loop
$count++; //increase counter var with each post in loop
//meta
$hp_highlights_url = get_post_meta($post->ID, 'wpex_hp_highlights_url', TRUE);
$hp_highlights_icon = get_post_meta($post->ID, 'wpex_hp_highlights_icon', TRUE);
?>
<div class="hp-highlight grid-5 <?php echo $post->ID; ?>">
<h3>
<?php
//display icon if option not set to default
if($hp_highlights_icon !='Select') { ?>
<span class="wpex-icon-<?php echo $hp_highlights_icon; ?>"></span>
<?php } //highlight meta option set to "Select" ?>
<?php
//show the highlight title as a link
if(!empty($hp_highlights_url)) { ?><a href="<?php echo $hp_highlights_url; ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php }
//show plain title because link option is blank
else { the_title(); } ?>
</h3>
<?php
//show the post content
the_content(); ?>
Thank you for the etiquette feedback. I will do better next time. :)
FURTHER RESEARCH:
Is this related? : Why is  appearing in my HTML?