• jdmcclain

    (@jdmcclain)


    I am looking to add my logo to the free version of Revolution Theme’s Code Blue theme. I tried the solution in this thread but I can not seem to make it work, so I have returned it to the original state.

    You can see the site here:
    https://evolutionaryawareness.com

    I know just enough to be dangerous, so if someone could tell me which code snippet to change and to what, I would be most grateful.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter jdmcclain

    (@jdmcclain)

    I think this is the relevant code in the header.php file:

    \\\
    <div id=”header”>

    <div class=”headerleft”>
    <h1>/”><?php bloginfo(‘name’); ?></h1>
    <?php bloginfo(‘description’); ?>
    </div>

    \\\

    But again, not sure what to change it to, or if I need to change the css file.

    moshu

    (@moshu)

    You add your logo as a background image in the stylesheet, here:

    .headerleft {
    	width: 470px;
    	float: left;
    	margin: 0px;
    	padding: 0px;
    	overflow: hidden;
    	}

    Thread Starter jdmcclain

    (@jdmcclain)

    Thank you. I know where that is…

    And exactly *how* would I do that? Again, please give me the code using the generic “your_logo.gif” in the code snippet.

    *deep bow*

    Again, thank you.

    moshu

    (@moshu)

    Put your logo image in the images folder of the theme!

    .headerleft {
            background: url(images/your_logo.gif) top left no-repeat;
    	width: 470px;
    	float: left;
    	margin: 0px;
    	padding: 0px;
    	overflow: hidden;
    	}
    Thread Starter jdmcclain

    (@jdmcclain)

    Let me be more specific [in order to be more efficient]:

    How would this change if I were to use my log as a background image?:::

    .headerleft {
    width: 470px;
    float: left;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    }

    In other words: If I were to insert code that would make my log the background image, how would the above be different?

    Thank you again for your time.

    moshu

    (@moshu)

    Read it above your post ??

    Thread Starter jdmcclain

    (@jdmcclain)

    Cool. We are definitely half way there. How do I get rid of the name and tag line:

    https://evolutionaryawareness.com/

    Moshu – thank you for the tip. It helped me with my logo also.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Adding Logo to the Code Blue Revolution Theme’ is closed to new replies.