Forum Replies Created

Viewing 15 replies - 31 through 45 (of 103 total)
  • Thread Starter astephens

    (@astephens)

    Well i was thinking that would work but when i removed the style=”width:640px;max-width:100%;”
    and added the css you suggested, i lost the media player and only got a line of text. Obviously i did something wrong…
    so i tried to change everything back the way it was and now i don’t have the player i had before… still just the line of text.

    I don’t know if you can tell what i missed but if not, i’ll just try to start all over and go again.
    Thanks for your help and advice though.
    https://gracechurchhouston.com/grace/

    Thread Starter astephens

    (@astephens)

    Thank you, Michael, for your patience. It looks like that’s what was needed and I do appreciate your help.

    Thread Starter astephens

    (@astephens)

    ok… i had already added the line you suggested:
    .postmetadata { clear: both; }
    but have not yet added the 6 line code.
    Then realized i was viewing the Text tab which is why i wasn’t seeing the image positioning options seen on the Visual tab of the post. On that tab i see (and remember) now that i can select the image and change position or edit the picture.
    (1) Since those options are there, would i still need to add the 6 line css code from the box in my previous post?
    (2) However now it seems that the image isn’t responding to the changes i make from the Visual tab and doesn’t always move to the position i set. I thought it might be because of the short length of the post but adding text didn’t help. I’m missing something.
    Thanks…

    Thread Starter astephens

    (@astephens)

    Thank you, Michael!

    SUCCESS on title color – adding that to css worked great
    SUCCESS on gold outline – i was able to change the color in comments.php and didn’t have to do the “overwrite” suggestion

    Need clarification on image position: on that link am i understanding it correctly to say that, in the css, I first add the complete:

    img.alignright { float: right; margin: 0 0 1em 1em; }
    img.alignleft { float: left; margin: 0 1em 1em 0; }
    img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
    .alignright { float: right; }
    .alignleft { float: left; }
    .aligncenter { display: block; margin-left: auto; margin-right: auto; }

    and then for each image in a blog post, i would need to add css for that specific image every time? Seems like alot of css work for every image. Is it because i have a blank theme that I can’t see/use the options i’ve seen on some templates that just let you select an image and adjust position with some check boxes?

    Thread Starter astephens

    (@astephens)

    Resolved…

    Thread Starter astephens

    (@astephens)

    Thank you, Mike. You definitely directed me to the solution and I appreciate all your help! ??
    Looking good now!

    Thread Starter astephens

    (@astephens)

    I just tried that and it did work. Thank you!

    However it did change the color of the title text to blue like the other links. It looks darker probably because it has the drop shadow.
    https://gracechurchhouston.com/

    I would like to keep the same look as the “Pastors” title text on the About page which is not a link (right sidebar).
    https://gracechurchhouston.com/about/

    Maybe i need to create a separate id selector in css for that h3 title to make it stay gold color?
    Thanks so much for your help!

    Thread Starter astephens

    (@astephens)

    oh yes! This looks so much better now.
    I will use the css from my contact form to make a few more adjustments regarding color, etc.
    That was a big help.
    Thanks so much!
    Ann

    https://gracechurchhouston.com/2013/12/10/chosen/

    Thread Starter astephens

    (@astephens)

    oh thank you.. I will try that and get back with you.

    Thread Starter astephens

    (@astephens)

    still looking for the “in the right place” from your original reply to my question. Not sure where in the code for that file that i put the changes.
    thanks!

    Thread Starter astephens

    (@astephens)

    Sorry it took me so long to get back with you, codeManiac.

    I think i understand i need to add code and then the css but I’m just not sure where in the file to add it. Here’s the code:

    <?php
    
    	if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
    		die ('Please do not load this page directly. Thanks!');
    
    	if ( post_password_required() ) { ?>
    		This post is password protected. Enter the password to view comments.
    	<?php
    		return;
    	}
    ?>
    
    <?php if ( have_comments() ) : ?>
    
    	<h4 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?></h4>
    
    	<div class="navigation">
    		<div class="next-posts"><?php previous_comments_link() ?></div>
    		<div class="prev-posts"><?php next_comments_link() ?></div>
    	</div>
    
    	<ol class="commentlist">
    		<?php wp_list_comments(); ?>
    	</ol>
    
    	<div class="navigation">
    		<div class="next-posts"><?php previous_comments_link() ?></div>
    		<div class="prev-posts"><?php next_comments_link() ?></div>
    	</div>
    
     <?php else : // this is displayed if there are no comments so far ?>
    
    	<?php if ( comments_open() ) : ?>
    		<!-- If comments are open, but there are no comments. -->
    
    	 <?php else : // comments are closed ?>
    		<p>Comments are closed.</p>
    
    	<?php endif; ?>
    
    <?php endif; ?>
    
    <?php if ( comments_open() ) : ?>
    
    <div id="respond">
    
    	<h4><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h4>
    
    	<div class="cancel-comment-reply">
    		<?php cancel_comment_reply_link(); ?>
    	</div>
    
    	<?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
    		<p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p>
    	<?php else : ?>
    
    	<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
    
    		<?php if ( is_user_logged_in() ) : ?>
    
    			<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out &raquo;</a></p>
    
    		<?php else : ?>
    
    			<div>
    				<input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
    				<label for="author">Name <?php if ($req) echo "(required)"; ?></label>
    			</div>
    
    			<div>
    				<input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
    				<label for="email">Mail (will not be published) <?php if ($req) echo "(required)"; ?></label>
    			</div>
    
    			<div>
    				<input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" />
    				<label for="url">Website</label>
    			</div>
    
    		<?php endif; ?>
    
    		<!--<p>You can use these tags: <code><?php echo allowed_tags(); ?></code></p>-->
    
    		<div style="">
    			<textarea name="comment" id="comment" cols="58" rows="10" tabindex="4" style="border: 1px solid gray;"></textarea>
    		</div>
    
    		<div>
    			<input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
    			<?php comment_id_fields(); ?>
    		</div>
    
    		<?php do_action('comment_form', $post->ID); ?>
    
    	</form>
    
    	<?php endif; // If registration required and not logged in ?>
    
    </div>
    
    <?php endif; ?>

    Some thoughts?

    Thread Starter astephens

    (@astephens)

    thank you… I’ll give that a try!

    Thread Starter astephens

    (@astephens)

    well… apparently my info only shows on my computer. I clicked the link in the previous message and it is not showing.

    Thread Starter astephens

    (@astephens)

    I also don’t know why my name and email address is still showing in the blanks that i entered when testing it.

    https://gracechurchhouston.com/2013/12/10/chosen/

    Thread Starter astephens

    (@astephens)

    Excellent! (you’re good!)
    Validator still says no errors now.
    Thank you!!!

Viewing 15 replies - 31 through 45 (of 103 total)