herbsmithinc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Mving file location on server breaks image links?Velvet Blues Update URLs is a good plugin where you put in the old site url and the new site url that you want stuff changed over to. Check the boxes of items you want changed over, images included, and it will make a site wide url change for you.
Forum: Fixing WordPress
In reply to: How to re-position logo to overlap content area?I’m not sure if this is the best way to get the desired result, but you can add some CSS for #logo like:
position: absolute;
top: 25px;(not margin-top)
z-index: 1000;again, not sure if this is the best way, but I tried it out in an editor and got the logo to drop a little below the image.
Try it out and see if it works for you
I also got emails from the WordPress team about my websites making this change. I don’t see any changes in the files or products. Should I be looking for hacked websites as well?
Forum: Fixing WordPress
In reply to: Reduce wrapper widthI would recommend using CSS, Simple Custom CSS is a great plugin to use, to make this change. Briefly looking at the website and playing in an editor, you would add some CSS like:
Width: /*Whatever width you think you want*/;
Margin-Left: auto;
Margin-Right: auto;This will shrink your wrapper and still keep it centered.
Play with it and see what you like.
Forum: Fixing WordPress
In reply to: Automatic UpdatesOk, that actually helps me understand that process a lot more. Thank You!
Forum: Fixing WordPress
In reply to: Automatic UpdatesSo it wouldn’t necessarily automatically update from 4.6 to 4.7, but the updates like 4.6 to 4.6.1 update automatically because they are just a derivative of the main update?
Forum: Fixing WordPress
In reply to: Update 4.6.1 failedI too have some 4.5.4 sites that I have yet to transition to 4.6.1, but in the past I have had issues where some files in the update had some corruption in them. However, you issue could be something as simple as the site needs time to run the changes, I’ve had that issue as well, or something where you might have to manually update the WordPress files via FTP
Forum: Everything else WordPress
In reply to: Best practice for member only shoppingThis looks to be what I am looking for. I had no idea WordPress offered that in the “stock” setting.
Thank You
Forum: Fixing WordPress
In reply to: drop down menu doesn't workHmmm…other than making sure the Primary Navigation box is checked and that all of your desired pages are set up how you want them to be in the nav, you could try disabling some plugins and see if that is causing an issue. Or you could see if the theme developer has a support forum that might have answers for you.
Forum: Fixing WordPress
In reply to: drop down menu doesn't workyep, from there you can choose the navigation to have any hierarchy you want
Forum: Fixing WordPress
In reply to: drop down menu doesn't workI used to have my sub-pages set up as having parent pages too, but the best method for you is going to be setting up a navigation menu how you want it on the menu tab. Make sure you check the box at the bottom of the menu page to make the navigation you create to be your primary navigation and your mobile.
Forum: Fixing WordPress
In reply to: drop down menu doesn't workdid you have the sub pages set up as having parent pages or did you go into the menu tab on the dashboard and make a navigation?
Forum: Fixing WordPress
In reply to: Help for a beginnerWhat is the url?
The first two issues might be easier when we can see what’s going on.
As for the clickable link to PDF documents…you can simply upload the file, grab the file path, and then place that file path in an tag where you need it.
Reaching out to the theme support team for Starkers might help you out with the first two issues as well
Forum: Fixing WordPress
In reply to: overlooking right code dropdown menu (change font)I use the Simple Custom CSS plugin for my sites and I do notice that when you want to make a CSS change you will need to save the code and then hit the refresh button on your browser window a couple of times to get the change to take place. It could be as simple as that or it could be a whole other animal.
Forum: Fixing WordPress
In reply to: wordpress text area issue (Huge issue on mobiles)You really don’t need the width:100%; when you have the max-width set at 1000px.
as far as the padding if you want that on the desktop version I would put that in the media screen for that and then exclude it from the tablet and mobile version as that seems to be pushing stuff around.