Benjamin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cubic] Theme Centering IssueOh. The forum I went to was:
https://www.jfarthing.com/support/forums/forum/theme-my-login/
which is what the installed plugin directed me to in WordPress Admin. Sorry about that. I’ll check it out!
Forum: Themes and Templates
In reply to: [Cubic] Theme Centering IssueUnfortunately forum support for the plugin has seemed to stop, and the issue hasn’t been brought up in the forums. I have access to the theme-my-login/templates/login-form.php …
<?php /* If you would like to edit this file, copy it to your current theme's directory and edit it there. Theme My Login will always look in your theme's directory first, before using this default template. */ ?> <div class="tml tml-login" id="theme-my-login<?php $template->the_instance(); ?>"> <?php $template->the_action_template_message( 'login' ); ?> <?php $template->the_errors(); ?> <form name="loginform" id="loginform<?php $template->the_instance(); ?>" action="<?php $template->the_action_url( 'login', 'login_post' ); ?>" method="post"> <p class="tml-user-login-wrap"> <label for="user_login<?php $template->the_instance(); ?>"><?php if ( 'email' == $theme_my_login->get_option( 'login_type' ) ) _e( 'E-mail', 'theme-my-login' ); elseif ( 'both' == $theme_my_login->get_option( 'login_type' ) ) _e( 'Username or E-mail', 'theme-my-login' ); else _e( 'Username', 'theme-my-login' ); ?></label> <input type="text" name="log" id="user_login<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'log' ); ?>" size="20" /> </p> <p class="tml-user-pass-wrap"> <label for="user_pass<?php $template->the_instance(); ?>"><?php _e( 'Password', 'theme-my-login' ); ?></label> <input type="password" name="pwd" id="user_pass<?php $template->the_instance(); ?>" class="input" value="" size="20" autocomplete="off" /> </p> <?php do_action( 'login_form' ); ?> <div class="tml-rememberme-submit-wrap"> <p class="tml-rememberme-wrap"> <input name="rememberme" type="checkbox" id="rememberme<?php $template->the_instance(); ?>" value="forever" /> <label for="rememberme<?php $template->the_instance(); ?>"><?php esc_attr_e( 'Remember Me', 'theme-my-login' ); ?></label> </p> <p class="tml-submit-wrap"> <input type="submit" name="wp-submit" id="wp-submit<?php $template->the_instance(); ?>" value="<?php esc_attr_e( 'Log In', 'theme-my-login' ); ?>" /> <input type="hidden" name="redirect_to" value="<?php $template->the_redirect_url( 'login' ); ?>" /> <input type="hidden" name="instance" value="<?php $template->the_instance(); ?>" /> <input type="hidden" name="action" value="login" /> </p> </div> </form> <?php $template->the_action_links( array( 'login' => false ) ); ?> </div>
Any suggestions by any chance?
Thank you for your help either way!
Forum: Themes and Templates
In reply to: [Boardwalk] Adjust width on content areaI’ve been writing in Safari. I’ll try Chrome here in a little bit and see if it has a positive effect, I’ve noticed Safari tends to have quite a few quirks with all sorts of things that Chrome and Firefox haven’t given me in the past (not in relation to the website, but just in general while using the Internet).
Still haven’t been able to quite get to the bottom of the text-wrapping issue: it definitely comes up when copy/pasting from other programs, however, it also shows up if I write from scratch in wp-editor and make an edit later in time after the post has already been published… can’t quite figure it out yet, using justified has helped reduce the effect but even then it doesn’t always fix some spots. Thanks for taking the time to help look into though!
Forum: Themes and Templates
In reply to: [Cubic] Image Center / Caption IssueThank you for your help, Kathryn. I was able to center the picture with the coding you provided.
Forum: Themes and Templates
In reply to: [Boardwalk] Adjust width on content areaHi there,
Thank you for taking the time to help resolve this issue I was having!
1. I ended up changing everything back to normal (which re-aligned the post titles so they were centered), and then I was able to adjust post/pages content by adjusting the width parameter from 768 to 1018 via the code cited below:
} .entry-author, .entry-content, .entry-footer { padding-right: 72px; padding-left: 72px; width: 1018px; }
which you really helped narrow down to find. It’s probably not the official way of going about the coding, still it managed to widen content by 250px and keep the post titles centered with minimal adjustments.
2. This issue must be from copy/pasting from other programs though I’ve even deleted all content and rewritten from scratch in the WP editor and still can’t get it to work properly (particularly when viewing content on a cell phone), oh well. I’m still working on the membership aspect of the site so that is why the code is coming up that way.
Thank you again for your time!
Forum: Themes and Templates
In reply to: [Boardwalk] Fix PaddingThat’s it! I was able to size down the padding successfully. Thank you for the info, Kathryn. ??
Forum: Themes and Templates
In reply to: [Boardwalk] Adjust width on content areaHi there,
1.) Thank you for your help regarding this matter! I made the adjustments successfully, however, the title isn’t centered anymore, neither is the “You need to login to view this content…” script at the bottom of posts with blocked content… perhaps I forgot to do something?
2.) I do write in other programs and copy/paste into the WP editor, and I’ve noticed that seems to cause this problem often. However, there are times where I haven’t copy/pasted any info from other programs and write from scratch in the WP editor and keep having the same problem…
Thank you again for your time.
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] Mail button not opening email clientHey there,
I’m having the same issue as well, it just shows html coding in the email (using Safari for my web browser). Any suggestions to fix this would be great.
Best,
BenjaminForum: Themes and Templates
In reply to: [Boardwalk] Share Button Picture IssueFixed it! It was a “Mojo Marketplace” plugin that came pre-installed that was jamming things up. Once I deleted it and then debugged the site via https://developers.facebook.com/tools/debug/ things were back in order, you might need to debug for each social network, FYI for all.
Forum: Themes and Templates
In reply to: [Boardwalk] Change Font StyleThank you for sharing such great information Kathryn.
I ended up sticking with the same font set up to minimize irregularities and keep things looking as professional as possible. Thank you again, though, it was very helpful.