• I’m working on the site shown here:

    http://www.ibeclean.com

    The owners of the site would like me to replace the text heading with a copy of their logo (shown lower in the page.) I am using the corpvox template, which did come with its own images folder, but now that I have installed it, I cannot find any way to access this folder to add a new image to it. Does anybody know how to do this? Or, is it possible to link an image to the template from the dashboard media library? If so, anybody know the line of code I would need?

Viewing 2 replies - 1 through 2 (of 2 total)
  • This is basic CSS. Simply add the image as a background to the #top div and move the text off the page using CSS positioning.

    You need to use an FTP client to access the Theme’s directory, which is located here:

    <root>\wp-content\themes\corpvox

    Assuming the Theme has an “images” folder, here:

    <root>\wp-content\themes\corpvox\images

    You can upload your image file, e.g. “logo.png” to this folder.

    Then, to output this image in a template file, use the get_stylesheet_directory_uri() template tag, e.g.:

    <img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png" />

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

The topic ‘adding images to uploaded template’ is closed to new replies.