belbo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Align featured image on postHello!
You’ve changed your site quite a lot since I last saw it! Do you still need help with this problem?I’m not sure why such a large file wouldn’t fill the space as you had the site before… the only thing I can think is that you selected the ‘medium’ setting in the images library instead of ‘large’ or ‘full size’ when you were inserting the image into the post.
Thanks
Forum: Fixing WordPress
In reply to: add store banner to packing noteHi John,
Could you provide more detail please? I’m not sure exactly what you’re looking for!Forum: Fixing WordPress
In reply to: How to use Slide and Push menu in WordPressHi
It’s difficult to know without seeing your code – could you show us more of what you’ve got? You could post it in pastebin (or similar) as it’s better at handling larger quantities of code:
http://pastebin.com/Forum: Fixing WordPress
In reply to: Images do not load on mobileThats strange, I still can’t see them on my computer! 🙁
Forum: Fixing WordPress
In reply to: How to use Slide and Push menu in WordPressHi!
Can we have a look at your website?
It might be that you haven’t enqueued the JavaScript?
http://codex.wordpress.org/Function_Reference/wp_enqueue_scriptForum: Fixing WordPress
In reply to: add store banner to packing noteHi John
Which theme are you using?Can you post a link to the website?
Forum: Fixing WordPress
In reply to: Date Times in WordPressHi!
Looks like the date format in the admin needs changing. Go to:
Settings>General
scroll to the bottom of the page and select a more friendly date format.
click save changes.Hope this helps
Forum: Fixing WordPress
In reply to: Images do not load on mobileThat’s strange, I’m using Chrome & firefox on Mac OS.
It looks like the url of the images aren’t coming through in the HTML which means that the browser won’t be able to find the image.
Can you see it on your desktop?
Forum: Fixing WordPress
In reply to: Align featured image on postHi!
I see this is a child theme of twentyfourteen. How confident are you with CSS?The problem is that the image is not big enough for the box. There are 3 possible solutions:
1. make the image bigger in something like photoshop and re-upload it
2. Change the CSS for the image from.full-width .post-thumbnail img { display: block; margin: 0 auto; }to
.full-width .post-thumbnail img { display: block; width:100%; height:auto; }3. get rid of the background stripes so it doesn’t appear too small
.post-thumbnail { /* background: #b2b2b2 url(images/pattern-light.svg) repeat fixed; */ display: block; position: relative; width: 100%; z-index: 0; }Thanks
Forum: Fixing WordPress
In reply to: front page is not working or looking correctHi gymnast44,
Re: Footer navigation,
We think it might be that you used to have widgets here. If this is the case go to:
appearance>widgets
Is there a place that says footer widgets? or secondary widgets? It should have the posts widget in the box already.
Drag over the “navigation menu” option from the list on the left and add it to the correct widget area. Make sure you select the menu you want to display using the menu dropdown menu.Re: The slider
Looking at your source code it looks like you are using a slider called “revslider”? It also looks like there’s only one image being sent to the home page, which means the arrows probably won’t show up anyway. Have you tried putting more than one image in the slider?
Cheers,
BForum: Fixing WordPress
In reply to: Images do not load on mobileHi! I can’t see the product images aren’t displaying on my laptop either!
This might be a theme issue as it’s outputting blank image tags with no URL
You might be best off speaking to the theme developers!
Forum: Fixing WordPress
In reply to: Featured image on article page?Hi Leon,
The First thing you need to do is create a child theme (so if the theme gets updated you won’t loose your changes). To do this:1. Create a folder in your themes directory called “stargazer-child”
2. Create a CSS file called “style.css” with the following code pasted in: http://pastebin.com/YdrF5U6z
3. To Change the blog page, copy and paste content.php from the stargazer theme to your child theme (you can find it in the ‘content’ folder. You need to create a folder called ‘content’ in your child theme and paste it into there).
4. Then paste the following into line 7 of content.php
<?php get_the_image( array( 'size' => 'stargazer-full', 'order' => array( 'featured', 'attachment' ) ) ); ?>so that it looks like this:
http://pastebin.com/v9Qkcpid
5. if you want to move the header image to somewhere else e.g. after the title, paste the same code after the <h1> tag.To make the image clickable
1. Copy the header.php from the stargazer theme into your child theme.
2. On line 37 highlight the code that’s already there and overwrite it with this code:
http://pastebin.com/pmkSqLim
so that content.php looks like this:
http://pastebin.com/0JSDaYhkoffpeakdesign:
In “gallery-to-slideshow.php” Line 201
Change: ‘link’ => ”,
To:
‘link’ => ‘false’,Worked for me anyway 🙂