Title: HTTPS and Absolute Path
Last modified: August 20, 2016

---

# HTTPS and Absolute Path

 *  Resolved [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/)
 * I have a private SSL certificate and it’s working properly on my eCommerce site,
   DickeyBub.net, however my page includes other resources which are not secure.
   I went to WhyNoPadlock.com and found out what items are not secure on that page
   and it turns out that its a couple of images. I’ve talked with support from my
   host and they said I need to change the images from a URL to absolute path, but
   I also know that WP is URL based.
 * I’m a bit confused at this point and was wondering what the next step is. I really
   hope you can help.

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

1 [2](https://wordpress.org/support/topic/https-and-absolute-path/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/https-and-absolute-path/page/2/?output_format=md)

 *  [Jorge](https://wordpress.org/support/users/jas956/)
 * (@jas956)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887184)
 * Have you tried updating the URL from the General Settings within Dashboard?
 *  Thread Starter [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887189)
 * You mean making it a HTTPS instead of HTTP?
 *  [Jorge](https://wordpress.org/support/users/jas956/)
 * (@jas956)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887197)
 * Yes, especially if you intend to keep the SSL site wide. There are also plugins
   available that help “force” SSL on visitors site wide.
 * I have used the following plugin in the past:
    [http://mvied.com/projects/wordpress-https/](http://mvied.com/projects/wordpress-https/)
 * Hope this helps.
 *  Thread Starter [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887204)
 * Thank you that fixed it!
 *  [Jorge](https://wordpress.org/support/users/jas956/)
 * (@jas956)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887211)
 * No problem, however, I just visited your site, and some content hasn’t been SSLed,
   like the YouTube video, etc. That will cause errors. Make sure iframes, images,
   scripts, etc. all have HTTPS going on, even if it’s from a 3rd party. If the 
   3rd party doesn’t offer HTTPS, then your visitors will get “other resources are
   not secured” warning from the browser.
 *  Thread Starter [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887218)
 * How do I secure the youtube video? Or any other resources that are not secure?
 *  [Jorge](https://wordpress.org/support/users/jas956/)
 * (@jas956)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887227)
 * Google/YouTube already have their content SSL’ed.
 * For example, the URL
 * Can be embedded securely by adding the S to HTTP
 * I’m not certain about other 3rd party Websites, but anything Google is usually
   SSL enabled.
 *  Thread Starter [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887304)
 * What about images that are embed from a url that is on my website. Since I have
   private SSL can I just change the URL from HTTP to HTTPS and that will fix it.
 *  Thread Starter [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887352)
 * I am now having a problem with my header. For some reason the header is not showing
   up and I think it’s because the image isn’t https, but I don’t know how to change
   it. I’ve tried re-uploading it, but that didn’t quite do it. Any ideas?
 * I appreciate the help Jorge. Thanks!
 *  [Jorge](https://wordpress.org/support/users/jas956/)
 * (@jas956)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887355)
 * What’s the URL of the image?
 *  Thread Starter [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887357)
 * this is the header image:
    [https://dickeybub.net/wp-content/uploads/2012/07/header_db43.png](https://dickeybub.net/wp-content/uploads/2012/07/header_db43.png)
 * i also have a blank image over top it so that people can click back to the homepage,
   here it is:
    [https://dickeybub.net/wp-content/uploads/2012/07/blank_head.png](https://dickeybub.net/wp-content/uploads/2012/07/blank_head.png)
 * Thanks
 *  [Jorge](https://wordpress.org/support/users/jas956/)
 * (@jas956)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887360)
 * Looks like your CSS is missing a character or two.
 * your #header CSS looks like this:
 * `#header ( background: white url('https://dickeybub.net/wp-content/uploads/2012/
   07/header_db43.png' no-repeat top center; }`
 * You’re missing a ) character after the URL string.
 * EDIT (typo and here’s the right string):
 * `#header ( background: white url('https://dickeybub.net/wp-content/uploads/2012/
   07/header_db43.png') no-repeat top center; }`
 *  Thread Starter [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887361)
 * Thanks Jorge, I am still a bit confused.
    I found #header in two places, here:
 *     ```
       /* ====================== START MAIN STRUCTURE ====================== */
       /* ==== Widths, heights, floats and margins of all basic sections === */
       #header     {  }
       #logo       {  }
       #nav        {  }
       #slogan     {  }
       #slider     { margin-bottom:20px; }
       #content    { width: 75%; }
       #sidebar    { width: 22%; }
       #footer     { clear: both; }
       ```
   
 * and here:
 *     ```
       /* ====================== START HEADER ====================== */
       #header { }   
   
       #top{
       	height: 30px;
       	background: #333;
       	position: relative;
       	z-index:10;
       ```
   
 * I tried inserting the code you gave in both places, but neither worked. Both 
   of those I found in my style.css in wordpress.
 *  [Jorge](https://wordpress.org/support/users/jas956/)
 * (@jas956)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887362)
 * It’s not in your style.css file. It is in the source of your page, do a right-
   click and “view source”. You’ll find what I’m talking about in there.
 * On Line 57:
    `#header { background:#fff url('https://dickeybub.net/wp-content/
   uploads/2012/07/header_db43.png' no-repeat top center; }`
 * I’m not sure if you’re running a plugin that adds that to the source or if that’s
   part of your theme structure so I can’t tell you if you exactly where to edit
   the CSS.
 * Hope this helps.
 *  Thread Starter [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * (@matt_hew)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/#post-2887363)
 * I’ve never used ‘view source’ before. When I did it my line 57 was different.
   Do I change the code in there or what does that do for me?
    Thanks for having
   patience with me.

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

1 [2](https://wordpress.org/support/topic/https-and-absolute-path/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/https-and-absolute-path/page/2/?output_format=md)

The topic ‘HTTPS and Absolute Path’ is closed to new replies.

## Tags

 * [absolute path](https://wordpress.org/support/topic-tag/absolute-path/)
 * [HTTPS](https://wordpress.org/support/topic-tag/https/)
 * [SSL](https://wordpress.org/support/topic-tag/ssl/)
 * [url](https://wordpress.org/support/topic-tag/url/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 16 replies
 * 2 participants
 * Last reply from: [Matt_hew](https://wordpress.org/support/users/matt_hew/)
 * Last activity: [13 years, 10 months ago](https://wordpress.org/support/topic/https-and-absolute-path/page/2/#post-2887374)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
