Forum Replies Created

Viewing 14 replies - 61 through 74 (of 74 total)
  • lol no prob.

    get back to the screen you were on in the image.
    Then with wp_options selected, click browse.

    the first row should be siteurl. check the url for that row.
    Make sure it has https://www.district5ive.com.

    If it doesn’t, click the pencil on that row to the left.
    that will open the editor for that row.

    then replace the czwar… url with https://www.district5ive.com

    How long ago did you set up hosting?

    It looks like your dns hasn’t propogated yet.

    After you uploaded all of your wordpress files with your db info in config.php, when you initially went to your site, did you get the default wordpress install screen?

    you can either keep trying to go to syncitsolutions.com and wait until
    you get the install screen (which could be a few hours).

    Or you can add the following to your hosts file:
    174.120.31.194 syncitsolutions.com

    then try again to go to your wp-admin page.

    Hi Hayden,

    Make sure you are in the database for district5ive.com.

    In the options table, you’re looking for the url of your site.
    If it says: https://www.czwarnodesign.com , change it to https://www.district5ive.com

    If the url is already district5ive.com, then we will need to know much more about yoursetup to help diagnose. ??

    Ipstenu is absolutely correct, that’s the best way ??

    Thanks for bringing that to my attention too. I’ll be sure to bring that up at the office tomorrow and the terminology that we are using is incorrect.

    You need to check the wp_options table of the district5ive.com database.

    It looks like you’ve entered the czwarnodesign.com url in the General > Settings section of the admin.

    We use raventools.com to analyze our clients sites.

    Google analytics is incorporated in the report and one of the sections of the analytics report is dedicated to inline styles. Any inline styles are listed in this section and it has the following heading:

    Your Web page appears to be using inline styles (which may include header styles). To reduce your
    page size, and to adhere to modern Web design standards, all styles should be separated from the Web
    page. Styles should be defined in a CSS document that reference the elements, IDs, and classes in the
    XHTML document.

    We have interpreted this to mean that google is penalizing pages with inline styles.

    Try changing this:

    $slides = new WP_Query( array( 'post_type' => 'slides', 'order' => 'ASC', 'orderby' => 'menu_order' ) );

    to this:

    $slides = new WP_Query( array( 'category' => 'Your Category', 'order' => 'ASC', 'orderby' => 'menu_order' ) );

    I can’t test that at the moment, but try it and let me know if it works.

    Also, if this code is in the plugin core files then make sure you make a backup of it. because your changes will be overwritten if you update that plugin.


    <font style="color:blue;font-family:Comic Sans MS;">this is it</font>

    The code above will work and it’s the easiest solution given your level of experience.

    however, every person with programming knowledge knows that it is not the best way to do it.

    You should look at your css files, then php files and try to understand how the different ID’s/Classes correspond to their given css.

    Trial / Error will help you greatly.

    Forum: Fixing WordPress
    In reply to: CSS Formatting

    Danielle,

    WPyogi is right, notice I used <div align=”center”> , which really isn’t any better than <center> ….you should control the styling with your CSS.

    ??

    Forum: Fixing WordPress
    In reply to: CSS Formatting

    Hi Danielle,

    It looks like you are using a text widget with the box checked to automatically add paragraphs.

    You should uncheck the box to automatically add paragraphs and try this code:

    <img style="float:right;margin-right:20px;" src="https://www.webrevmarketing.com/wp-content/uploads/2012/10/email-opt-in-book-e1351098608776.png"/>
    <div align="center">
    <span style="font-family: SansationBold; font-size:19px; color:#666;">Join The Online Revolution Now & Get Your<span style="color:#de5817;border-bottom:1px dashed #de5817;"> FREE (15+ PAGE) WEBSITE AUDIT!</span></span>
    </div>
    <div align="center">
    <span style="font-family: SansationBold; font-size:16px; color:#666;">Uncover the Hidden Tips & Tricks to Drive Massive Traffic, Leads & Sales.</span>
    </div>
    <div align="center">
    <form method="post" action="https://www.aweber.com/scripts/addlead.pl">
    <input type="hidden" name="listname" value="webrev_website" />
    <input type="hidden" name="redirect" value="https://www.webrevmarketing.com/thank-you/" />
    <input type="hidden" name="meta_adtracking" value="custom form" />
    <input type="hidden" name="meta_message" value="1" />
    <input type="hidden" name="meta_required" value="name,email" />
    <span style="font-family: SansationBold; font-size:19px; color:#666;">Name: <input type="text" name="name" value="" size="25"> Email: <input type="text" name="from" value="" size="25"> <input type="submit" name="submit" value="JOIN NOW!" size="15"></span></form>
    </div>

    You should also note that using inline styles in text widgets (or anywhere in your code), is bad for SEO.

    Let me know if that works.

    Forum: Fixing WordPress
    In reply to: CSS Formatting

    The image has both position:absolute & float:right; properties.
    An element can’t have both attributes.

    If it has to be position:absolute; , then reduce the left: number.

    If it has to float right, give a margin-right:30px; and see if that helps.
    (adjust the number of pixels as needed).

    If you want to change the font from the wysiwyg editor, you will need to download a plugin like TinyMCE.

    The better way to do it would be in the css.
    for example:

    #content h1 {
    font-family: arial;
    }

    If SEO is a concern, google penalizes you for inline styling. Control fonts, colors, etc with CSS as often as possible.

    Could be a lot of things….
    I would start with making a copy of the live database and copy it over to the test domain.

    If the fields were created with a plugin, your test site won’t have the meta-data yet.

    Thread Starter Tom Combs

    (@tcwebguru)

    Thanks Michael!
    Great plugin by the way.

    If only all of the plugin developers responded as quickly as you do.
    Keep up the good work!

Viewing 14 replies - 61 through 74 (of 74 total)