Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)
  • Thread Starter dyakub

    (@dyakub)

    Thank 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.

    dyakub

    (@dyakub)

    I’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.

    Thread Starter dyakub

    (@dyakub)

    thanks!

    Forum: Fixing WordPress
    In reply to: Analytics Install
    dyakub

    (@dyakub)

    the easiest way would be to install the google analytics plugin and just copy the tracking code from your analytics account into the plugin settings

    Thread Starter dyakub

    (@dyakub)

    yea I deleted it, it does convincingly look like an actual person wrote that….very sad.

    Thread Starter dyakub

    (@dyakub)

    ok 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 em

    Thread Starter dyakub

    (@dyakub)

    Ok 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

    I think the .htaccess file is important only if you had a lot of redirects or subdomains within these links. Is this true?

    Thread Starter dyakub

    (@dyakub)

    Just 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'); ?>" />
    Thread Starter dyakub

    (@dyakub)

    Thanks 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

    Thread Starter dyakub

    (@dyakub)

    ok, I’ve added some javascript code to it, but its not showing up on the site or the page source

    I 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.

    if you mean inserting an image and then hyperlinking that image to a url then:

    <a href="ENTER URL"><img src="ENTER IMAGE URL"/></a>

    Thread Starter dyakub

    (@dyakub)

    Thank you so much; So much easier than messing with the php

Viewing 15 replies - 1 through 15 (of 17 total)