Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Center area post/pages (http://forum.bytesforall.com/forumdisplay.php?f=32)
-   -   closing blank vertical space in center column (http://forum.bytesforall.com/showthread.php?t=16636)

joe hark Jan 29, 2012 11:08 AM

closing blank vertical space in center column
 
Please look at http://75.127.110.64/~seachang/.

Note the space between the bottom of the word "Welcome" and the top edge of the photos in the slide show.

Where is the ode (and what should it be) to reduce the height of that space by at least half?

juggledad Jan 29, 2012 11:20 AM

It is caused by wordpress adding a <p> at the begining of the post
you could use CSS to set all the <p> to not display in a post
HTML Code:

div.post-bodycopy p {
    display: none;
}


joe hark Jan 29, 2012 11:27 AM

The code, seen in the page's HTML view, is

[slideshow] The <strong>Indian-American Bar Association of Chicago</strong> is proud to represent the South Asian legal community in the Chicago area.

IABA's purpose is three-fold:
<ol>

there is no <p>

juggledad Jan 29, 2012 02:22 PM

when I look at the page source I see
HTML Code:

<div class="post-35 page type-page status-publish hentry post" id="post-35">


<div class="post-headline">                <h1>Welcome</h1>
                </div>

<div class="post-bodycopy clearfix"><p>    <script type="text/javascript">
        var jsSlideshow = new Array();

note the < p > after the post-bodycopy clearfix

lmilesw Jan 30, 2012 11:32 AM

You won't see the <p> in the html view in WordPress by default but a space in the content indicates where one is.

In the html view do you have a space above the shortcode? If so remove it. If you have no space above the shortcode you could use CSS like below to create the illusion of no p tag.
HTML Code:

#slideshow-wrapper {
    margin-top: -30px !important;
}

Quote:

Originally Posted by joe hark (Post 79619)
The code, seen in the page's HTML view, is

[slideshow] The <strong>Indian-American Bar Association of Chicago</strong> is proud to represent the South Asian legal community in the Chicago area.

IABA's purpose is three-fold:
<ol>

there is no <p>



All times are GMT -6. The time now is 08:37 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.