sarahhic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image will not postWe have a shopping page with items. Two weeks ago images loaded fine. Now nothing! We have tried various image sizes, color settings, logged in and logged out and nothing changes. Did WP change some kind of setting?
Forum: Themes and Templates
In reply to: Social media links not showing on home pageI did not edit directly in the twenty eleven theme. I created a child theme with mods only to the header, footer, and style sheets.
They did not show up in the twenty eleven theme with no child either.
Forum: Themes and Templates
In reply to: [Twenty Eleven] A few changes I need help with.If you don’t use DW the easiest way to find and change your code is to identify the style or code that needs changed via Firebug and then to use the editor on the back end of WP. You can pull up your files there and use the “find” function on your browser to search the specific code you need.
If you’re still having trouble from there it may be easier for you to download or purchase a ready made template you don’t need to change.
Forum: Themes and Templates
In reply to: [Twenty Eleven] A few changes I need help with.This may not be the “right” way of going about editing your theme, but it worked really well for me and was pretty simple.
I copied the existing twenty eleven style.css sheet and pasted it into my child theme, then I went through using Firebug to find all the colors etc. I need to change. This is really easy if you open your style sheet in DW code view, because Firebug will give you the style sheet line (for example line 527).
I’m not sure what you mean by “logo” but if you mean where it says Dev at the top of the page I don’t know how to cut down white space without removing the top header section completely. When you go into your header file (copy and paste it into your child theme just to be safe) remove the following code:
<hgroup> <h1 id="site-title"><span><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1> <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2> </hgroup>This will remove the whole section above the header image. Then remove the second appearance (there are 2 total, leave the first) of:
<?php get_search_form(); ?>I hope that helps!!
Forum: Themes and Templates
In reply to: [Twenty Eleven] A few changes I need help with.These are all changes I just made to my child theme today, post your site address so we can take a look.
I am having a similar problem involving theme twenty eleven. I created a child theme for all my mods, but I need to add social media links to each post on the home page and haven’t been able to get the <div> to show up. Any ideas???