Kirk Wight
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Previous Post button not showing upWhich of the Constructor themes are you using? The problem may be with the template itself (some of them have the missing image file, some don’t)
Forum: Themes and Templates
In reply to: Posts not displayed in sidebarThe standard Recent Posts widget has its own “Number of posts to show” setting. Go to Appearance > Widgets and open the widget itself for the settings.
Forum: Themes and Templates
In reply to: custom menu on certain pagesYour images without captions seem to have a custom style with margin-bottom of 6px, compared to the captioned images which are 1.5em.
To override this, you can add this to your stylesheet:
p img, .wp-caption { margin-bottom: 6px; }It sounds to me like you want a Spanish version of your site, as opposed to just a couple of pages. This can be done in a bunch of different ways, including with WPML and as a separate site. There’s a good talk on all the options here:
See which approach seems best for you and open another ticket for any questions you may have.
Good luck!
Forum: Themes and Templates
In reply to: Site Title MalfunctionGo to the theme’s website and download it from there – you’ll find a read-me file that doesn’t seem to be included in the wordpress.org download. Directions for changing the logo are in there. Good luck.
Forum: Themes and Templates
In reply to: Chaning Styling of Guillemets: "ยซ" or "ยป"Can you give an example, or maybe a link to an image of what you’d like?
Yes, you can certainly target the guillemets with another font-family using the <span> tag:
<p>Read more <span class="guillemet">ยป</span></p> .guillemet { font-family: Arial, sans-serif; }Forum: Themes and Templates
In reply to: My text has gone white on certain pages, can't see it :(Please post a URL to the site and let us know which theme it is.
Forum: Themes and Templates
In reply to: Threat to creativityThe boxes are grouped in threes because they are all floated left.
Removing
float: left;from style.css under.post(around line 265) should do the trick.Forum: Themes and Templates
In reply to: Take out slideshow and how to make about workPlease post a URL to the site so that we can see what you mean, and mention the theme name also.
Forum: Themes and Templates
In reply to: Site Title MalfunctionWhat theme are you now using, and can you post a URL so we can see what you mean?
Forum: Themes and Templates
In reply to: [Mystique] [Theme: Mystique] Gravatars stuck on one value?I don’t know anything about Disqus – do you have a link you can post?
Forum: Themes and Templates
In reply to: Slow WordPress Website Due to Theme file Help?Are you loading your scripts in wp_footer()? This can improve the appearance of your loading speed.
Forum: Themes and Templates
In reply to: [Mystique] [Theme: Mystique] Gravatars stuck on one value?If the person who left the comment doesn’t have a gravatar set up, WordPress will insert whatever default gravatar has been chosen in Settings > Discussion.
WordPress includes numerous JS files itself, so most likely you’re seeing some sort of conflict.
Use wp_enqueue_script() to add your scripts, or maybe just us an existing WordPress Lightbox plugin from the Plugin Directory, where someone else has figured out the hard stuff already ๐
Forum: Themes and Templates
In reply to: two column themeI’m afraid these forums are only for WordPress sites, which your site is not. You may have more luck posting in a general HTML forum, like here: http://www.htmlforums.com/.
Good luck!
Forum: Themes and Templates
In reply to: custom menu on certain pagesCan you post a link to show the spacing problem with captioned images?
When you say you need a Spanish copy of the site, do you mean a separate site translated in Spanish, or the same site will just happen to have some Spanish pages on it? If you need pages to be translations of other pages, there’s a plugin called WPML. It’s a bit of a beast, so you may need help from them (it’s not free either, unfortunately, but it’s the best translation management plugin for WordPress, IMHO).