bytesforall
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: LMB^Box Comment Quicktags in AtahualpaUpload the plugin as
/wp-content/plugins/lmbbox-comment-quicktags.php
instead of
/wp-content/plugins/lmbbox-comment-quicktags/lmbbox-comment-quicktags.php
Forum: Themes and Templates
In reply to: Awesome ThemeThanks for the compliments
@tom: I understand you concerns, but the dynamic CSS is not external for various reasons. And Google is smart enough to see where the head ends and the body starts.
@chaoskaizer: You’re too cute.
Forum: Plugins
In reply to: WP-Email / Atahualpa: Failing to Show the FormMake sure you have the right WP-Email version for your WP version, also, you might have to re-generate your permalinks. If this doesn’t help please check if it works in the “default” theme to verify whether this is a theme issue.
Forum: Plugins
In reply to: Photo Galleries for 2.7 using AtahualpaI’ve seen others use Flickr and have installed NextGen myself, both should work.
Forum: Plugins
In reply to: WP-Email not displaying automatically, as it shouldSee Atahualpa Theme Options -> Post / Page Info Items, you’ll need to add it there as %wp-email% into one of the textareas at the bottom
Forum: Installing WordPress
In reply to: right sidebar won’t updateAfter you used the drop down menu to select the other sidebar, are you clicking the “Show” button before adding/removing widgets?
Forum: Fixing WordPress
In reply to: Clickable header imageIn functions/bfa_header_config.php around line 160 find
<a class="divclick" title="' . get_bloginfo('name') . '" href ="' . get_option('home') . '/"> </a></div>' : '' );
and replace with
<a class="divclick" title="Title for this link" href="link_to_the_other_page"> </a></div>' : '' );
Forum: Fixing WordPress
In reply to: images broken on all but home pageReference images with an absolute path instead of a relative path:
I.e. in the widget on the top left:
<img src="/wp-content/uploads/orvis_166x95.gif"
or
<img src="https://www.yoursite.com/wp-content/uploads/orvis_166x95.gif"
instead of
<img src="wp-content/uploads/orvis_166x95.gif"
Forum: Themes and Templates
In reply to: background images in atahualpaTry https://www.yourdomain.com/wp-content/themes/atahualpa/images/myimage.gif in the browser to see if that image even exists at that location.
Forum: Installing WordPress
In reply to: right sidebar won’t updateAnd it worked when the sidebars were left / right? Something may have gone wrong while you edited the files. Here’s how to do it properly https://forum.bytesforall.com/showthread.php?t=168
Forum: Themes and Templates
In reply to: background images in atahualpaYou have a space between url and (
Forum: Fixing WordPress
In reply to: Atahualpa Header image probs in FirefoxYou probably have (a) space(s) in the image file name
Forum: Themes and Templates
In reply to: Height in AtahualpaI am sure you’ll find someone to work on your site, to fix what you broke, and to look into the theme options for you, for a fee. You won’t even have to say thanks – ever. Sound good?
Forum: Themes and Templates
In reply to: Height in AtahualpaLooks like you already figured out the answer to your next question (linking image to page)
Forum: Themes and Templates
In reply to: Height in AtahualpaThe 40 pixels are gone now, the remaining space above the header image is caused by an extra div as I mentioned earlier (“You also have an empty additional container “) which is not from the theme. It’s being created by the WP-Banner plugin via Javascript. You won’t see it in the source code because of that.
<div id="bannerclick"> <a onclick="BannerClick" target="_blank" href=""> <img style="border: 0pt none ;" alt="" src="" /> </a> </div>
and that div bannerclick has a height of 60px as defined in
https://rgvkidsdirectory.com/wp-content/plugins/wp-banner/styles/default.cssAfter you deactivated that plugin the only remaining space above the layout (40px total) will be CSS settings that you made here
Atahualpa Theme Options -> Body, Text & Links -> Body Style
padding-top: 20px;
Atahualpa Theme Options -> Layout -> Layout Style
padding: 20px;