• …from what I can see, the php code in the main page template is correct. This problem is not just with a specific post, but with ANY post that ends up being at the top of the page.

    For example, my blog is at https://inspirewireblog.com and you will notice that the post title, fb like box, and retweet button are not clickable, but the rest of the posts on the page are. If you click on “previous entries”, you will see older posts, but the problem remains…top post not clickable (or included buttons below post title).

    I am not a coder. I know enough html to get me by, but I don’t know php or css, but I can usually muddle my way through with enough research. This theme is driving me crazy, but I’ve figured out most of the issues. This is my last one…and I could really use some help on this one. I’m at a loss here.

    THANKS ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter smileee2

    (@smileee2)

    I forgot to mention, there is one way to get to the unclickable post and that is to click on “comments”. Other than that, you can’t get in.

    the div #topbar
    (this is the code from the browser:

    <!-- Topbar -->
    		<div id="topbar">
    			<div id="topbar-left">
    
    			</div>
    			<div id="topbar-center">
    
    				<h3></h3>
    							</div>
    			<div id="topbar-right">
    				</div>
    		</div>
    		<!-- /Topbar -->

    is hovering over part of the other content;

    due to the fixed height height: 201px; in this style:

    /* Header - Topbar */
    
    	#header #topbar {
    		position: absolute;
    		top: 334px;
    		left: 30px;
    		width: 1004px;
    		height: 201px;
    		color: #000000;
    		font: normal 12px "Century Gothic", Century Gothic;
    	}

    reducing the height would work;
    however, i have no idea if you will need this topbar at some time, and if this change will have negative efffects.

    Thread Starter smileee2

    (@smileee2)

    Ohmygosh, you’re genius or I’m an idiot, but I had to take it down to 75 to make it work and it solved the problem. I’m with you…I have no idea if the change will have negative effects, but I don’t see any, so far. Wonder why it was so high in the first place. Anyway, thank you so much!!!!! I really appreciate the time you took to help me out! ??

    R.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘new theme; top post not clickable but…’ is closed to new replies.