Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Josh

    (@ocmarketingwiz)

    #site-banner {
    text-align: left;
    font-size: 20px;
    font-family: arial;
    }

    pretty new to this stuff too, but i tested this out on my site. hope it works on yours.

    Josh

    (@ocmarketingwiz)

    Hi Vivisa.
    I just checked out your Facebook links and they are working.
    I checked the Facebook s.m. button on the top right and i went to Facebook just fine.
    then i clicked on your website URL in the left column under Message Now.

    Then i tried clicking on your URL with in your blog post.

    where is it that your getting that message?

    Josh

    (@ocmarketingwiz)

    when you click the media button and upload an image, when you select an image and your about to insert the image you have some options as to what you want the image to do in the bottom right corner.

    Attachment Settings
    Media File
    Attachment
    custom URL
    None

    You want to choose Custom URL. That allows you to insert any url that you want.

    If thats not the case and what your looking for is the coding. Then you want to change the tab from in the editor screen from Visual to Text.

    Once in the text Screen you want to look for the html for the imagees that you want to hyper link. The html should look something like this,

    <a href="https://mmblocal.com"><img class="alignnone size-medium wp-image-81" src="https://mmblocal.com/wp-content/uploads/2015/09/original-mmb-local-960-300x252.png" alt="original mmb local 960" width="300" height="252" /></a>

    You want to change the: a href=”https://mmblocal.com”&gt; at the beginning

    Hope this helps

    Josh

    (@ocmarketingwiz)

    Hi this is my second or third post here at the forum. I hope I’ll be able to help.

    you want to get to the footer php file in Appearance then Editor

    Find your footer file.

    look for the section “<dir class=”cancel-comment-reply” </dir>
    open that up and you want to look for this string,

    <div style="">
    			<textarea name="comment" id="comment" cols="58" rows="10" tabindex="4" style=""></textarea>
    		</div>

    This is your comment area.
    Now if you want to see where the borders are, add this bit of code. border: 1px solid red; under the <div style>

    It should look like this.

    <div style="">
    			<textarea name="comment" id="comment" cols="58" rows="10" tabindex="4" style="
        border: 1px solid red;
    "></textarea>
    		</div>

    you can see right in the middle the coding that reads, border: 1px solid red; This will create a red border around the comment box section so you can see the area your working with.

    If you want to go one step further and color in the comment box add this piece of code. “background: gray;” this goes under “border” it should then read like this.

    <div style="">
    			<textarea name="comment" id="comment" cols="58" rows="10" tabindex="4" style="
        border: 1px solid red;
        background: lightblue;
    "></textarea>
    		</div>

    this should create a red border with it colored lightblue.

    Here is your CSS

    element.style {
        border: 1px solid red;
        background: #5B7F85;
    }
    element.style {
        border: 1px solid white;
        background: lightblue;
    }

    Like i said, this is one of my first post and i need to learn how to condense my replies.

    Here’s your CSS

    element.style {
        border: 1px solid red;
        background: #5B7F85;
    }
    element.style {
        border: 1px solid white;
        background: lightblue;
    }

    The comment tags are just above the opening <style div>. You’ll be able to see it. Its a big paragraph of text.

    Lastly, here’s a video that shows you the process to finding everything your looking for.

    https://screencast.com/t/zJpDkf1y

    Josh

    (@ocmarketingwiz)

    Josh

    (@ocmarketingwiz)

    Heres one more example
    click on the file

    https://github.com/Verdi/Blank-WordPress-Page

    Josh

    (@ocmarketingwiz)

    I found this wordpress page:
    https://www.ads-software.com/support/topic/how-do-i-make-a-blank-page-template?replies=10

    open a text doc. name it blank-page.php

    copy this code (you can find it on the page) into the .php doc

    <?php
    /**
    	Template Name: Page with background only
    
    */
    ?>
    <html>
    <head>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <style type="text/css">
    body { background-color: #cccccc; background-image: url('https://uffekirkegaard.dk/wp-content/uploads/2010/10/bg.jpg'); background-repeat: repeat-y; background-position: top center; background-attachment: scroll; }
    #page-content { width: 640px; margin: 20px auto; }
    #page-content p { font-size: 1em; font-family: Georgia; line-height: 1.5em; text-align: justify; }
    </style>
    <title><?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title>
    <?php wp_head(); ?>
    </head>
    
    <body>
    <?php while (have_posts()) : the_post(); ?>
    <div id="page-content">
    	<?php the_content(); endwhile; ?>
    </div>
    </body>
    </html>
    then for to match the text to your site: put this code between Style tags
    <style></style>
    
    #page-content p { font-size: 1em; font-family: Georgia; line-height: 1.5em; text-align: justify; }

    upload the .php to your wordpress theme in your directory

    login to your wp open a new page and you should see it in yout layout dropdown options.

    hope this helps.

    Josh

    (@ocmarketingwiz)

    Hi,
    I’d be happy to give it a shot. Can you please provide your website URL, so I can take a look at it.

    Thanks

    Josh

    (@ocmarketingwiz)

    Hi, my name is Josh and your post looks exciting. I’ll be happy to help.

    if you can tell me a little more about your issues please.

    When you said, ” I’ve tried 4-5 different themes. Whenever I go to Visit Site, them same thing appears” what do you mean,
    -The themes aren’t changing in your control panel or when looking at it live online?

    -You’re talking about is the Admin Nav Bar at the top of your screen, correct? If so, what exactly is happens? for example, when you log in you see the bar, then you click to see your site live then it disappears?
    Or does it disappear after a certain period of time?

    Lastly, I am not seeing a orange background with water drops. Can you explain a bit more.

    What I’m seeing on my screen is a tree on the left side overlooking a lake with mountains or hill in the distance. along with the blue and white theme. With your site name in white in the upper left corner. with all your pages down the left side column.

Viewing 9 replies - 1 through 9 (of 9 total)