doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: simple css questionmagicfun1,
Simple to understand targeted browser hacks: http://www.doc4design.com/articles/css-browser-hacks/ Though it might be best to indlude style sheets targeted to specific browsers.
Forum: Fixing WordPress
In reply to: How do I do a rollover background image?hawktalk,
No problem, glad everything worked out.
Forum: Fixing WordPress
In reply to: How do I do a rollover background image?hawktalk,
No worries.
#footer { width: 800px; height: 70px; background: url(images/strawberry-footer.jpg) no-repeat 0 0; }Check the width and height on that. The image would then only be a single strawberry footer image with no Facebook logo. Since we have no :hover style it is static.
Forum: Fixing WordPress
In reply to: How do I do a rollover background image?hawktalk,
In that web site the two footer links are two completely separate rollovers. Your website currently is only utilizing one and you only get one link per rollover.
If you would like two rollovers. Make the red footer background a static background image and the Facebook and Twitter images position: relative in a new div. This would allow multiple social media rollovers.
Something to this effect:
<div id="footer" class="clear center"> <div class="facebook"><a href="facebook.com"></a></div> <div class="twitter"><a href="twitter.com"></a></div> </div>#footer would have a static background image and the other two would be rollovers positioned relatively within the footer div.
Forum: Fixing WordPress
In reply to: How do I do a rollover background image?hawktalk,
Do you know where in the code the previous Facebook and Twitter images are currently? They seem to be outside the Page content which makes me think they would be located at the bottom of the footer.php file. Looks as easy as copying the code from the previous link and creating a new image for the next social media icon.
Forum: Fixing WordPress
In reply to: How do I do a rollover background image?hawktalk,
I’ve been cheering you on 🙂 Looks like you removed the h2 tag which removed the second footer. Hopefully that was an older comment.
Forum: Fixing WordPress
In reply to: How do I do a rollover background image?hawktalk,
Just missed you check the comment above. The background is repeating because of the H2 tag’s link. If this is necessary we can target it specifically but it doesn’t seem to be doing anything.
Forum: Fixing WordPress
In reply to: How do I do a rollover background image?hawktalk,
Looks like you’re getting it. Remove the H2 tag and the link hidden there then remove the #footer-link style from your style sheet and you’re all set.
Forum: Fixing WordPress
In reply to: simple css questionmagicfun1,
Add a height and width to the
- and you may need to clear it as well to get the
- to display at the full height.
Forum: Fixing WordPress
In reply to: How do I do a rollover background image?hawktalk,
You’re looking for this:
#hawkberry #footer a { width: 800px; height: 200px; display: block; background: url('images/strawberry-footer-ro.jpg') no-repeat 0 0; color: #000; } #hawkberry #footer a:hover { background: url('images/strawberry-footer.jpg') no-repeat 0 0; }Please add the correct width and height. Your footer code should now look something like this:
<div id="footer" class="clear center"> <a href="http://www.facebook.com/profile.php?id=100000247809024&ref=profile"/> </div>Forum: Fixing WordPress
In reply to: Can’t find uploaded files in theme?GNemes,
The header image should be loaded in: wp-content/themes/default (or your theme name folder) /images.
It does seem odd that your plugins are not showing. They should be here: wp-content/plugins/ and it seems you have that correct. Make sure the plugins are in single folders and not plugin folder within another folder.
Forum: Fixing WordPress
In reply to: Time and date stampJust to be clear the specific code to remove is
<?php the_time(' h:m a - l F d Y') ?>and the header info before it assuming it exists. Your code may differ between the parenthesis. Example: (l F d Y) may vary as this is the actual output code for month day year and how they will be output.
Forum: Fixing WordPress
In reply to: How can I center the post/page Title?bbrody,
Add the code in the style sheet located under Appearances. Similar to this:
h1 { text-align: center; }Forum: Fixing WordPress
In reply to: Where does .htaccess file go?joanscraftworld,
Just to be clear the root is the same folder as wp-admin, wp-includes and wp-content.
Forum: Fixing WordPress
In reply to: dashboard not formatted properlysdaccdek,
Strange issue, but you might try uploading the wp-admin folder again. Just a quick thought.