Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8320145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T22:33:28+00:00 2026-06-08T22:33:28+00:00

I have a landing page with three sections- a most recent blog section, an

  • 0

I have a landing page with three sections- a most recent blog section, an about section, and a Tweeter feed.
These elements are all styled the same and in the same format, however something is not quite right with the most recent blog section.
Specifically, there is a larger space under, <h2><a href="http://growingedgecoaching.com/blog">Growing Edge Blog</a></h2>, and <a href="http://growingedgecoaching.com/home"><span style="color:#b8bf33">Continue Reading</span></a></p> is much further down and larger than it should be.

Any ideas?

Live site.

This is the relevant code:

<div id="landing-brief">
        <ul>
            <li>
                <h2><a href="http://growingedgecoaching.com/blog">Growing Edge Blog</a></h2>
                <p>
                    <?php
                    // Get the most recent post
                    $the_query = new WP_Query( 'posts_per_page=1' );

                    // Pull the excerpt
                    while ( $the_query->have_posts() ) : $the_query->the_post();
                        the_excerpt();
                    endwhile;

                    // Reset Post Data
                    wp_reset_postdata(); 
                    ?>
                <br /><br /><a href="http://growingedgecoaching.com/home"><span style="color:#b8bf33">Continue Reading</span></a></p>
            </li>
            <li>
                <h2><a href="index.php?page_id=27">Meet Mary Anne</a></h2>
                <p>Mary Anne is the founder of Growing Edge Coaching™, a coaching and consulting company, where she helps individuals and companies develop powerful strategies to move forward in their life, their work, or their business. Her coaching is founded on her 20 years of experience as a manager and senior leader in non-profits. <br /><br /><a href="index.php?page_id=27"><span style="color:#b8bf33">More About Mary Anne</span></a></p>
            </li>
            <li>
                <h2><a href="#">Recent Tweets</a></h2>
                <div id="twitter-feed">
                    <?php
                        include_once(ABSPATH . WPINC . '/feed.php');
                        $rss = fetch_feed('https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=Growing_Edge');
                        $maxitems = $rss->get_item_quantity(3);
                        $rss_items = $rss->get_items(0, $maxitems);
                        ?>

                        <ul>
                        <?php if ($maxitems == 0) echo '<li>No items.</li>';
                        else
                        // Loop through each feed item and display each item as a hyperlink.
                        foreach ( $rss_items as $item ) : ?>
                        <li>
                        <?php echo str_replace('Growing_Edge: ', '', $item->get_title()); ?>
                        </li>
                        <?php endforeach; ?>
                        </ul>
                    </div><!-- end twitter-feed -->
                <br /><br /><a href="https://twitter.com/growing_edge"><p><span style="color:#b8bf33">Follow @Growing_Edge</span></p></a>
            </li>
        </ul>
    </div><!-- end brief -->


#landing-brief {
    width: 860px;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 40px;
}

#landing-brief ul li {
    display: inline-block;
    padding-right: 20px;
    vertical-align: top;
    width: 250px;
}

#landing-brief ul li:last-child {
    padding-right: none;
}

#landing-brief ul li p span {
    color: #b8bf33;
}

#landing-brief #twitter-feed {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 75%;
    line-height: 1.5;
    color: #333333;
    margin-left: -28px;
}

#landing-brief #twitter-feed ul li {
    padding-bottom: 5px;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T22:33:30+00:00Added an answer on June 8, 2026 at 10:33 pm
    <h2><a href="http://growingedgecoaching.com/blog">Growing Edge Blog</a></h2>
    <p>
     <p>“Embrace the messy imperfect genius. Seek to be misunderstood by creative minds.” ~Ross Martin One thing I have learned over the years as an entrepreneur is that when I am in my most creative space, I have to release being a perfectionist and jump into my creative messiness. I need to create space that allows [...]</p>
     <br /><br />
     <a href="http://growingedgecoaching.com/home"><span style="color:#b8bf33">Continue Reading</span></a>
    </p>
    

    should be this:

    <h2><a href="http://growingedgecoaching.com/blog">Growing Edge Blog</a></h2>
    <p>
      “Embrace the messy imperfect genius. Seek to be misunderstood by creative minds.” ~Ross Martin One thing I have learned over the years as an entrepreneur is that when I am in my most creative space, I have to release being a perfectionist and jump into my creative messiness. I need to create space that allows [...]
     <br /><br />
     <a href="http://growingedgecoaching.com/home"><span style="color:#b8bf33">Continue Reading</span></a>
    </p>
    

    I suggest you to use inspect tools like Chrome Developer toolbar to inspect the page, it gives lots of information, help you figure out where’s the problem.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a landing page on rails with blog style posts. Since it's the
http://blog.helpcurenow.org/test/mockups/mar2010/lp.html In the above landing page, I have an offers box that has four
I have Page Tab App, which has a landing page with a Log In
After I submit a form I have 2 $_POST variables. In the landing page
I have been tasked with optimizing a marketing landing page for speed. It already
I have a facebook page where I set the default landing page to be
I have 2 (Wordpress) blogs on the same server and a landing page with
I have a landing page with several actions. The action are within table rows
Hey there, I have dynamic question marks on my landing page that scroll with
I have a site I'm working on with a /landing-page/ folder, and I'll be

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.