dyakub
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Inaccessible header codeThank you! I had to remove this due to some unnecessary jquery.
Looking for a solution to this as well. Instead of it showing the progression loop, it’s showing the home page on the second click. i’m checking to see if there are any Jquery conflicts.
Forum: Fixing WordPress
In reply to: positioning images side by side, not verticallyI’m not sure about amazon image links but the only way i know would be to edit the vertical and horizontal spacing for the images (if you are using wordpress’s default browser uploader). If your not then just go into the html tab and add the margin left and margin right properties to the code your using like:
<img src="filename" style="margin-left: 200px; margin-right: 200px;"/>
This moves the image 200px to the right of the post. If it were margin-top and margin-bottom, it would move the image 200px to the bottom.
Forum: Fixing WordPress
In reply to: add another sidebar?thanks!
Forum: Fixing WordPress
In reply to: Analytics Installthe easiest way would be to install the google analytics plugin and just copy the tracking code from your analytics account into the plugin settings
Forum: Everything else WordPress
In reply to: Is this comment spam?yea I deleted it, it does convincingly look like an actual person wrote that….very sad.
Forum: Fixing WordPress
In reply to: how do I customize widgetsok https://www.burnnoticefanatic.com
The widget I’m trying to customize is the Burn Notice Twitter Widget on the sidebar right (2nd one under the subscribe bar). The text is black and the links are gray. I want to change this just for this widget not for the rest of emForum: Fixing WordPress
In reply to: how do I customize widgetsOk I’ve found the css for it. Is there any way I can edit the stylesheet for a specific widget (not for all). I think php would be responsible for this. If a widget is displayed then show a different stylesheet. Like:
<?php if ( widget('Archives')) <link rel="stylesheet2.css".........> ?>
something like that
Forum: Requests and Feedback
In reply to: All links dead after upgrade!I think the .htaccess file is important only if you had a lot of redirects or subdomains within these links. Is this true?
Forum: Fixing WordPress
In reply to: How do I place code in the head sectionJust a snippet of the header.php file; the code i want for it to load and will not display in the page source is in bold
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title> <?php if (is_home()) : ?> <?php bloginfo('name'); ?> - <?php bloginfo('description'); ?> <?php else : ?> <?php wp_title('', 'false'); ?> - <?php bloginfo('name'); ?> <?php endif; ?> </title> <strong><script type="text/javascript" src="/js/jquery-1.3.1.min.js"></script> <script type="text/javascript" src="/js/jquery.juitter.js"></script> <script type="text/javascript" src="/js/system.js"></script></strong> <?php global $options; foreach ($options as $value) { if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); } } ?> <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style<?php echo $artsee_color; ?>.css" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
Forum: Fixing WordPress
In reply to: How do I place code in the head sectionThanks for the information…My syntax is exactly the same as wordpress requires it. So strange because other javascript in the header.php file displays correctly in the page source. When I save the page source as a .html file and manually put the javascript code that I want in the <head> section, it works perfectly; though this change is not permanent. If there was a way that you could be able to edit the html file of your entire site with wordpress adapting to the changes, it make blogging a lot easier. I’ll keep trying..Thanks anyway
Forum: Fixing WordPress
In reply to: How do I place code in the head sectionok, I’ve added some javascript code to it, but its not showing up on the site or the page source
Forum: Themes and Templates
In reply to: Problems with theme in Internet ExplorerI really don’t see much of an error with the design, though I’m using Chrome instead of Firefox. You could try creating another css file that specifically handles the design in IE.
Forum: Themes and Templates
In reply to: Help with inserting imageif you mean inserting an image and then hyperlinking that image to a url then:
<a href="ENTER URL"><img src="ENTER IMAGE URL"/></a>
Forum: Fixing WordPress
In reply to: is_category not workingThank you so much; So much easier than messing with the php