jbwp11
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: newfont in my custom css doesnt workah, fixed it. I was making changes in visual instead of html, thanks.
If there’s a shorter way to change font than
<p class=”newfont”> .... </p>
then that could be useful.Forum: Fixing WordPress
In reply to: newfont in my custom css doesnt worklink edit — > “about us” is where i tried .newfont in custom css. what could be wrong in it?
Forum: Fixing WordPress
In reply to: newfont in my custom css doesnt work<font size=3 face=”Arial”> Example text </font>– this worked to change in the font in the main site. The issue I described above is at a subdomain of the main site.Also tried the corrected code
.newfont { font-family: Arial, sans-serif; font-size: 3px; color: #000000; }and then using it as
<p class=”newfont”> example text </p>
but doesn’t work.Forum: Fixing WordPress
In reply to: newfont in my custom css doesnt workI am not able to modify font on a page even if I use
<font size=3 face=”Arial”> Example text </font>in the text of the page.So, I specified a “newfont” in “My custom CSS” plugin as follows
newfont { font-family: Arial; sans-serif; font-size: 3; color: #000000; }I then used it as follows in the text of the page to modify the font of the text, but the below expression simply shows as is on the webpage and doesn’t affect the font.
<p class=”newfont”> example text </p>Forum: Fixing WordPress
In reply to: newfont in my custom css doesnt workTrying to define p2, a new font.
How do I define a new font and use it?Forum: Fixing WordPress
In reply to: newfont in my custom css doesnt work(link edited)
Same result when changed mycustom css to
p2{ font-family: Arial, sans-serif; font-size: 3px; color: #000000; } <p2> example </p2>Forum: Fixing WordPress
In reply to: wordpress addon domain(links edited) editing out the links for privacy to avoid being out of 30 min window for edit.
will repost as soon as someone can help.Forum: Fixing WordPress
In reply to: wordpress addon domainposted them earlier later edited,and reposted above.
Forum: Fixing WordPress
In reply to: wordpress addon domainAny clue? There’s are some signs of wordpress without graphics when I go to (edit) but none at (edit)
Forum: Fixing WordPress
In reply to: wordpress addon domainy.org mapping to the subdirectory example.com/y was done in the hostgator addon domain link. After that, I went to fantastico and did an install into the “Install on Domain” field to “y.org”.
Forum: Fixing WordPress
In reply to: Add username/passwd access to the website pagesI added the folowing to functions.php. Is that the right place and what advantage does plugin have?
add_action( 'init', 'my_add_shortcodes' ); function my_add_shortcodes() { add_shortcode( 'my-login-form', 'my_login_form_shortcode' ); } function my_login_form_shortcode() { if ( is_user_logged_in() ) return ''; return wp_login_form( array( 'echo' => false ) ); }Forum: Fixing WordPress
In reply to: Add username/passwd access to the website pagesI used the following on all pages I want restricted. But the login-form does not show when the user is not verified. Can i do this without plugin?
<?php if ( is_user_logged_in() ) : ?> Example content here <?php else: wp_login_form( array( 'echo' => false ) ); endif; ?>Forum: Fixing WordPress
In reply to: Add username/passwd access to the website pagesI have a my-custom-css.
I already have a password-protect mentioned in the content-visibility link above, but I’m looking to provide a user-specific login/password access to a few pages on the website.
Visit to the website would show limited content on the webpages and a user-password form to login. Once logged in all pages would show full content. How can I do this?
Forum: Everything else WordPress
In reply to: Any good free software for shapes/animation?I wasn’t sure if some of these technologies led themselves better to wordpress. I wanted to build human figures (correct term?) graphics such as http://www.masterfile.com/stock-photography/image/400-05746573/A-set-of-human-figure-working-in-a-construction-site
Updated My-custom-css and it works, thanks