doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Footer Pictureshawktalk,
Technically these images are not glowing through the use of php. The images are rollovers using CSS. They consist of two images; one dulled in color and the other bright. When the mouse hovers over the image it switches to the second image through the link style. Something similar to this:
a { background: transparent url(images/dullimage.jpg) no-repeat 0 0; } a:hover { background: transparent url(images/brightimage.jpg) no-repeat 0 0; }This can be accomplished through a single file using the background positioning. Look for a few CSS rollover tutorials online.
You will want to place your focus on the footer.php file to place the code.
Forum: Fixing WordPress
In reply to: Blog Posts significantly in the past.AutoDMC,
I like the concept and would like to see the site when complete. There a couple of options off the top of my head: The first is to use a custom field to enter the year then output that to the date field which could additionally be set to utilize the Month and day. The second option is to alter the core, which is always a little tricky if you forget about the alteration during an upgrade.
Forum: Fixing WordPress
In reply to: Underline linkroychan,
Just for reference:
a { text-decoration: nonw; }Something similar to the above is what you are looking for to remove underlines on links. This is a CSS question and not WordPress specific. Here is a good place to start learning CSS: http://www.w3schools.com/css/
Forum: Fixing WordPress
In reply to: Simple Press Forumljmyers,
You might have better luck with this question at Simple:Press.
Forum: Fixing WordPress
In reply to: Cannot load massive menusammoro,
This is interesting as I believe there is also a post display limit of around 300. I’m curios if this is a related issue. One workaround for the post issue is to create several loops beginning at different intervals. For example the first loops ends at showposts=299 and the the next loops begins at 299.
Forum: Fixing WordPress
In reply to: Missing p tagsJowiii,
Is this an issue you are seeing only in the TinyMCE editor or is this also translating across to the published post as well? You don’t necessarily see <p> tags within the HTML editor of WordPress.
Forum: Fixing WordPress
In reply to: Underlined is not workingMartin1,
If this issue resides in the admin area please send us a screenshot as this is a little confusing.
Forum: Fixing WordPress
In reply to: Looking for someone to design and apply new themetunermag,
Please take a look at our portfolio: http://www.doc4design.com and if you feel comfortable that we can handle your needs please send us a direct message from the contact form ad we will put together a quote. We look forward to hearing from you.
Forum: Fixing WordPress
In reply to: Robots.txt Location?fuzzyjon79,
If you don’t see it in the root open a text editor and create the file saving it as robots.txt and uploading it. It’s a fairly straightforward process. Just in case check here: http://directorysubmissions.eu/news/2009/09/09/creating-a-robotstxt-file-for-wordpress/
Forum: Fixing WordPress
In reply to: Time and date stampermod,
See: http://wordpress.org/support/topic/305159?replies=3 It’s the same basic question except your focus is on the Contact page file instead of the single.php or index.php as Shane has pointed out.
Forum: Fixing WordPress
In reply to: Email newsletter?stanwelks,
You might also consider Mailchimp: http://www.mailchimp.com which is an excellent newsletter service complete with WordPress ready widget for signup.
Forum: Fixing WordPress
In reply to: how do i get rid of the stupid “ABOUT”ssahagun,
Let us know either your site address or what theme you are using.
Forum: Fixing WordPress
In reply to: Widgets appearing at bottom of pageRonLambright,
Yes, without some example it’s difficult to tell what is causing the problem.
Forum: Fixing WordPress
In reply to: Can’t delete sidebar widgets in Seo Basics themebbrody,
Not certain which widgets you are referring to so taking a guess:
• Delete the following to remove the RSS:
<li id="rss_icon"> <div> <a href='<?php bloginfo('rss2_url') ?>' title='<?php _e('Subscribe to feed', 'sds') ?>'><img src='<?php bloginfo('template_directory') ?>/images/rssfeedicon.jpg' alt='<?php _e('Subscribe to feed', 'sds') ?>' /></a> <span><?php _e('Subscribe to feed', 'sds') ?></span> </div><div class='clear'></div> </li>• Delete the following to remove Adverts:
<li id="ads"> <?php sdstheme_sidebar_ads() ?> </li>Forum: Fixing WordPress
In reply to: Google Webmaster Tooldbo,
Sorry for the late response. I checked the site and the gallery seems to be working in Firefox 3. Are you still needing assistance with this. Nice pics by the way.