Grace Faubion
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: changes not reflecting instantly and iPhone 7 issueChanges not being reflected immediately is more than likely a browser cache issue. You can clear cache by:
- Clearing it manually in your browsers settings.
- Try doing a “hard refresh” (cmd + shift + r on mac OR cntrl + shift + r on PC)
The iPhone 7 issue can be fixed with CSS. The CSS media query that is being used to move the phone number on smaller screen sizes needs to happen sooner in order to avoid having the issue on the iPhone 7 screen size.
Forum: Fixing WordPress
In reply to: Acivated a new theme and now website is unable to handle requestI would contact your hosting company and have them restore the site to a previous backup point. If they don’t have a backup of your site they should be able to help you fix it another way.
Forum: Fixing WordPress
In reply to: Looking for mp3 audio player pluginHere is a resource with great options for an audio player:
https://premium.wpmudev.org/blog/free-wordpress-audio-player-plugins/
It even includes instructions on using the audio player that’s now built into WordPress.
- This reply was modified 7 years, 4 months ago by Grace Faubion.
Forum: Fixing WordPress
In reply to: when navigating to a media (photo or video) you cannot go backCan you post the link to your site?
Forum: Fixing WordPress
In reply to: Editing the Background Color OpacityYes, you would need to edit the css.
Login into the dashboard and under Appearance select Customize. This will take you to the front of your site with a menu on the left. The last option in that menu is Additional CSS. Select that and it will allow you to add custom CSS. Add the following CSS:
.site { background-color: rgba(26, 26, 26, 0.7); }
You should see an immediate change to the black background. Make sure you save & publish the change(blue button at the top).
- This reply was modified 7 years, 4 months ago by Grace Faubion.
Forum: Themes and Templates
In reply to: [AccessPress Lite] Color ChangeI didn’t even try. I just disabled them. Sorry!
Forum: Themes and Templates
In reply to: [AccessPress Lite] Color ChangeThat is the correct css file and it has worked for me. If you are wanting to change the color of the main nav bar you can search for .main-navigation and change the colors within that bracket. Mine now looks something like this –
.main-navigation {
clear: both;
display: block;
font-weight: 300;
font-family: ‘Lato’, sans-serif;
position: relative;
border-bottom: 3px solid #293037;
background: #293037;
}So just change the border-bottom and background to whatever color you want. Make sure you save the file and do a hard refresh on your browser and that should work for you.