fifelskik
Forum Replies Created
-
It worked! (I grabbed your code before they deleted it) https://www.digitalgovgroup.com
The only change to your code was that I had to add a height to the second # in order to be able to see the white space. Thanks so much for your help – I spent HOURS trying to figure this one out.
Thanks, @faugro. I’m installing a test site on my server right now to try out the style changes above on a duplicate site that is not currently live. I’ll report back;)
I’ve been using Chrome’s tool instead of Firebug, but it’s pretty much the same type of CSS viewer.
The main issue is that using a negative top margin (-30) on either #main or #primary brings my content under the header instead of on top of it. I’m sure I’m overlooking something obvious.
@faugro, sorry, I’m not quite sure what you mean.
Forum: Plugins
In reply to: WPTouch breaks after upgrading WP Super Cache to 1.0Weird, I had the same problem today with WP Touch and W3 Total Cache plugin. IE9 viewers on a pc saw the mobile version when they clicked on one of my links. I disabled the plugin and now the page loads normal.
Forum: Themes and Templates
In reply to: Twenty Eleven Theme@u2smg, here is a link to an article on how to add the sidebar to your other pages. I hate that WordPress has done that in this theme.
In your content.php file, you could try to edit the entry-meta lines to add the last modified info like this:
<div class="entry-meta"> <?php twentyeleven_posted_on(); ?> <p>Last modified: <?php the_modified_date(); ?></p> </div><!-- .entry-meta -->
Forum: Themes and Templates
In reply to: Twenty Eleven Theme@jghicks, I think the time display has something to do with the twentyeleven_posted_on function. This theme does that strangely. One way to add the time would be to edit the content.php file and add the time after the posted_on function. It would look like this:
<div class="entry-meta"> <?php twentyeleven_posted_on(); ?> at <?php the_time('g:i a') ?> </div><!-- .entry-meta -->
Forum: Plugins
In reply to: [Plugin: Frontpage-Slideshow] Scrollbar at bottom of pageI changed the button position to the left instead of the right, and now the scrollbar at the bottom of the page is gone.
This resolved my problem, because I have the button display set to ‘No’, so you can’t see it anyway. However, plugin users who want have visible buttons on the right side of the slides may still have an issue. Thanks.
Forum: Fixing WordPress
In reply to: Email not working – 3.2.1 on Windows serverThis is resolved. There is a php.ini configuration file in the PHP folder on the server. I opened the file in notepad, and found the [mail function] line and changed it to:
[mail function] For Win32 only. SMTP = ourIPaddress smtp_port = 25
I tried adding another test user and the notification email was sent properly.
Forum: Fixing WordPress
In reply to: Is there a featured image bug in twenty eleven???Ah, that explains why some of us are confused with what happens with the Featured Image. The Twenty Eleven theme has the option for turning the header banner off, so mine is off. With the banner off, you don’t realize where the Featured Image has gone.
I made a child theme of Twenty Eleven. How exactly would I
modify the template files so the featured image displays by your title instead of as the header image
? Thanks for any pointers.
Forum: Fixing WordPress
In reply to: Is there a featured image bug in twenty eleven???simply insert the image into your post.
@fonglh – Then what’s the point of the Featured Image in the Twenty Eleven theme? The Featured Image area typically allows one to style it differently via CSS and have it appear at the side of the post, next to the post title.
I could get around that by using CSS to generically style any .img that I insert into my post, but what happens when I insert multiple images? The Featured Image needs to be distinct.
Forum: Themes and Templates
In reply to: Twenty Eleven Theme@lulubell138 – it looks like you may be able to reduce some of the space by finding
.singular.page .hentry
in your style.css file and changing it’s properties to.singular.page .hentry { padding: 0; }
Forum: Fixing WordPress
In reply to: Is there a featured image bug in twenty eleven???That behavior is ridiculously stupid. The point of the ‘Featured Image’ is that it appears next to the post, usually auto-reduced to a thumbnail. This new behavior means that we have to re-size all of our images to 1000×288?
Those dimensions only look good in the header banner. Furthermore, many of us purchase stock photos for our post thumbnails. The larger the stock photo, the higher the price. This means I have to buy a huge stock photo, just to display a Featured Image thumbnail?
I’m sure someone has already figured out a solution. Hopefully they check this thread and help us all out.