Chelsea Otakan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upgraded to 3.2 Visual editor buttons missingApril,
This may be silly (you probably tried it), but have you tried clearing your cache? The sprite serving the TinyMCE icons is new, so it might still be serving a cached one.
Forum: Fixing WordPress
In reply to: Blog Entries In Sidebar!?It looks like the entry made on March 7th has an extra
</div>
at the end of it. Remove that and it should fix your problem.Forum: Themes and Templates
In reply to: Pink and Purple 1.3 by Sukienki- trouble changing link colorsYes, you’ll need to add the above code at the end of your css file.
To change more color, you’ll need to brush up on CSS: https://www.w3schools.com/css/css_text.asp
Forum: Fixing WordPress
In reply to: "About Me" shows up on post and text under comment fieldYou’ll need to go into your templates and change code for both of these.
You’ll want to remove this from loop-single.php:
<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?> <div id="entry-author-info"> <div id="author-avatar"> <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?> </div><!-- #author-avatar --> <div id="author-description"> <h2><?php printf( esc_attr__( 'About %s', 'twentyten' ), get_the_author() ); ?></h2> <?php the_author_meta( 'description' ); ?> <div id="author-link"> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyten' ), get_the_author() ); ?> </a> </div><!-- #author-link --> </div><!-- #author-description --> </div><!-- #entry-author-info --> <?php endif; ?>
the comments form edit would take a little more code messing if you’re up to it. I’d recommend leaving it in so commenter’s know why they’re comments get filtered.
Forum: Themes and Templates
In reply to: Pink and Purple 1.3 by Sukienki- trouble changing link colorsCan you post the site you’re developing on and what theme your using?
Also, the HTML code for underline is usually
<u>Word</u>
.<ul>
creates an unordered list.Link styles are defined in the CSS, as that’s where most visual definitions go. HTML is used for structure, not visuals.
to change the color and style of a link, add this to the css:
a { color: red; text-decoration: underline }
That code wil make all links red and underlined, unless otherwised defined in another part of the css.
Forum: Themes and Templates
In reply to: Can the theme be localized?What theme?
Forum: Themes and Templates
In reply to: Lost sidebar and footer from pages and post after code editing.Can you post the code from post.php and page.php files on https://wordpress.pastebin.com?
Thanks!
Forum: Themes and Templates
In reply to: side loading templateThis is a cool one: https://demo.thethemefoundry.com/shelf/
Forum: Themes and Templates
In reply to: Portfolio PageCould we get a link? Would probably take creating a child theme that replaces/recodes part of the theme html and css.
Which area of the theme did you want to create columns? I’m assuming the lower part that already has three columns, but just replacing them with your art + thumbnails?
Forum: Themes and Templates
In reply to: Firefox messing up CSSThis is the closest I could get it between Chrome and Firefox:
div#search input { border: 0; padding: 0 10px 0 45px; width: 245px; height: 35px; line-height: 38px; }
Forum: Themes and Templates
In reply to: Firefox messing up CSSinput styles are some of the hardest things to get proper cross browser. Try using setting your margins and paddings for the search form to 0 and adjusting the line-height. I’ve found this to be a little more accurate across browsers.
Forum: Fixing WordPress
In reply to: from DRUPAL to WordPress – where is everything?An equivalent to blocks can be achieved by using a combination of custom page templates and custom metaboxes.
Forum: Fixing WordPress
In reply to: plz help in removing error from function.php. urgentThat last line is scary. Definitely change themes
Forum: Fixing WordPress
In reply to: Embedding Videos Doesn't WorkWhen you post the URL, make sure its on its own line.
If it still doesn’t work, try the embed shortcode:
[embed]https://videourl.com[/embed]
Forum: Fixing WordPress
In reply to: Increase page widthI’m looking at it and the “Looking to Learn Drums” image is still floated right and the Write Comment box is breaking below your banner. Fixed since your last post?