Spencer Finnell
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme CreaterThere really aren’t “programs” for creating themes. Read into Theme Development.
You could also try theme frameworks such as Canvas, Genesis, or Builder (Google them)
Forum: Themes and Templates
In reply to: Custom content on Tags page? Possible?Depending on what theme you are using, you might have a
tag.php
. If it does, you can edit that and add what you want to show above the loop. If not, you can create a duplicate of yourarchive.php
file, and rename it totag.php
. Then add what you want in that page.For more information on how WordPress chooses what file to display, check out the Template Hierarchy
Forum: Themes and Templates
In reply to: How To Delete Categories from Header – Bueno WooThemes?You both should try to get support from the WooThemes support forums. They will be able to help you better.
Forum: Fixing WordPress
In reply to: Custom FormCheck out the many form plugins.
Forum: Fixing WordPress
In reply to: Images On Page “Squished”Check out Editing Files in WordPress
Forum: Themes and Templates
In reply to: How to add Twitter button on menu bar?Looks like you’ve accidentally added an extra link above the Twitter one.
<li class="page_item page-item-141"> <a title="" href="https://www.avenueapplemac.com/141-2/"></a> <a href="https://www.twitter.com/AvenueAppleMac"><img alt="Follow AvenueAppleMac on Twitter" src="https://twitter-badges.s3.amazonaws.com/t_mini-a.png"></a> </li>
You only need the one link with the image (assuming you only want to show the icon)
Forum: Themes and Templates
In reply to: replace the default comment boxAre you using the Twenty Ten theme?
If so, in
comments.php
, look forcomments_form()
, and then check out the documentation for a guide on customization.Forum: Themes and Templates
In reply to: How to add Twitter button on menu bar?If your theme is using the new Menu Management, you can use that.
Otherwise you will need to edit your theme’s
header.php
file, and add the HTML needed for a link.Forum: Themes and Templates
In reply to: How do I push my header up?If you remove
width:700px;
from#site-title
, the tagline will jump up, letting the banner move up too.Forum: Themes and Templates
In reply to: Help with Twenty TenTwenty Ten uses the new template-tag, comment_form(), which would be located in comments.php. The documentation goes through customizing the form.
Forum: Themes and Templates
In reply to: Twenty Ten Theme – CSS Opacity Wrapper and ImagesIf you apply opacity to a
div
, it is applied to all of the children elements.If you just want the container’s background to be semi-transparent so you can see the background through it, I would check out rgba
Forum: Requests and Feedback
In reply to: What is wrong with this thing?It seems to work fine for millions of people…
Who do you use for hosting? If your site is loading slowly, it could have to do with that.
Also, do you have many/any plugins installed? Or a custom theme? Some bad code in a theme or plugin could cause the site to respond slowly.
Forum: Fixing WordPress
In reply to: Images On Page “Squished”How are you making your changes? Through the editor in WordPress or through an FTP client?
Forum: Fixing WordPress
In reply to: Images On Page “Squished”Just the
max-width
line. Make sure you save the changes.Forum: Themes and Templates
In reply to: Calling a page sidebar disappearsDo you have a link to your site you can share?
What theme are you using? It looks like you are linking to the actual post that is the static homepage? Some themes have different layouts for single posts, as opposed to the actual homepage.
Try linking to just your base domain (https://yoursite.com).