doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Make an image show in the sidebar on the homepage onlydanaldinho,
Start by placing the following at the top of the homepage ( or Main Index Template / index.php ):
<?php $thisPage="Index"; ?>“Index” can be any name you prefer, but needs to be specific to this page. Next in your sidebar.php file add the code for the image to be included and a little extra php. Something to the effect of:
<div id="sidebar"> <?php if ($thisPage=="Index") { echo ""; } else { echo "<div class="myImage"> <img src="http://www.image-location.com> </div>"; } ?> </div>The first echo is blank “”; indicating that if this page isn’t the homepage something else could happen. Technically you could remove the second echo but I prefer to have options.
Forum: Fixing WordPress
In reply to: categories with commentperegrine12,
Send a link over so we can take a look.
Forum: Fixing WordPress
In reply to: Font problemsgoodasgoldws,
Just to be sure you know where you are heading:
• Log in to your admin area
• Visit Appearance
• Visit Editor
• Click on style.css ( bottom / right-side list )
• Do a search for the both ( .widecolumn . entry and body )Hope this helps.
Forum: Fixing WordPress
In reply to: showposts=-1 crashing loopskytribe,
I’ve never seen the use of showposts=-1 can you explain why you would do this? Thanks
Forum: Fixing WordPress
In reply to: My images are overlapping can you help?williams89,
Just to clarify; you are unable to delete the images via the Media Uploader? Have you tried deleting them through FTP?
If you wrap the images in a separate div then apply overflow:hidden a width and height you won’t need to upload new files.
Forum: Fixing WordPress
In reply to: Drop-down lists covered by Flash videos?clappingfetus,
What browser are you using. Firefox 3.52 seems to be working fine. Though I’m positive Camino is having issues until the next release.
Forum: Themes and Templates
In reply to: White vertical block in my theme templateForchek,
The site is still not showing, have you taken it offline?
Forum: Themes and Templates
In reply to: CSS not working on pagescarriehq,
There is only one header.php file, correct? Oddly enough you seem to be missing the end tags for <html> <body> and quite possibly more, is there a footer.php file you are missing as well?
Definitely check those errors before continuing. If you need some help please don’t hesitate to contact us we would be happy to provide a reasonable quote.
Forum: Themes and Templates
In reply to: Help! One color on my theme is not showing up anymore!thepranamama,
Can you provide a link so we can take a look? Thanks
Forum: Fixing WordPress
In reply to: trouble getting banner to top leftTheFlyerFly,
Look in the style.css for the following:
#page { margin: 20px auto; padding: 0; width: 800px; }and alter the top margin to maybe 2px.
#page { margin: 2px auto; padding: 0; width: 800px; }Forum: Fixing WordPress
In reply to: Reverse order of posts in a categorydoctorb,
Here is one option:
query_posts('showposts=5&order=DESC'); if ( have_posts() ) : while ( have_posts() ) : the_post();Order Parameters:
Designates the ascending or descending order of the ORDERBY parameter.* order=ASC – ascending order, lowest to highest value
* order=DESC – descending order, highest to lowest valueFor more information look through the codex here: http://codex.wordpress.org/Template_Tags/query_posts
uninvited_guest,
I believe you are looking for “title tags” as provided by the SEO Ultimate plugin. http://www.seodesignsolutions.com/wordpress-seo/ Let us know if this fits your needs.
Forum: Fixing WordPress
In reply to: My images are overlapping can you help?williams89,
There are at least two options. The first is to make correctly sized thumbnails for this particular instance and the second is to wrap these images within a div that determines width and height as well as overflow: hidden. The second method will allow you to keep the original image size but it may not look like what you want.
Forum: Fixing WordPress
In reply to: new logo is outlined? box around itflatsilver,
I hope you mean border: none for the css code. Try this:
<img src="<?php echo get_option('home'); ?>/wp-content/themes/depo/img/logo.gif" border="0" alt="Logo" />This will remove the link decoration assuming this is what you are referring to.
Forum: Everything else WordPress
In reply to: Uploading Larger Filesjsabourin,
Take a look at the following:
http://wordpress.org/support/topic/211230?replies=6
https://support.cirtex.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=23