noahcryns
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Athena] How to edit footer?Check in your file called: footer.php
Forum: Themes and Templates
In reply to: [Lovecraft] How can I add the SEO yoast plugin to this theme?I think you may be on WordPress.com?
I recommend going with www.remarpro.com
https://www.wpbeginner.com/plugins/why-cant-i-add-or-install-plugins-in-wordpress/Forum: Themes and Templates
In reply to: [Hueman] Hueman Parent/Child ThemesBack up your WordPress files via FTP.
I’m not sure what your coding experience is, but you can;– Create a child theme.
– Move all your files to the child theme that you have updated ( header.php, footer.php, etc….)
– Then you probably will be good. ( There may be issues with functions.php or such )This way, you won’t lose any info.
Forum: Themes and Templates
In reply to: [OnePress] change text in footerCheck out Footer.php of your theme.
Use a child theme, so you don’t lose changes after you update the theme.Forum: Themes and Templates
In reply to: [Baskerville] Migration to Baskerville Theme, SEO IssueYou will be ok if you change themes, with some forethought.
Be sure to keep all your SEO the same. Don’t change URL’s on the site or such.The main thing is to not do anything that would change the way a robot would crawl your site. Meaning, don’t change URL’s, be sure to keep homepage info pretty much the same, and don’t lose any of your other SEO you’ve done on the site.
Make sure you have the sitemap.xml working.I’ve done this many times. Generally, there is very little SEO loss because of a theme update.
With this said, out of about 100 sites I’ve done this to, only 1 or 2 lost SEO…..
Mainly, because I reset my permalink structure on accident.I’m sure others have other info to bring to the table.
Forum: Themes and Templates
In reply to: [Vantage] Grey Bar on top RemovalHello,
Add this to your CSS#page-wrapper {
padding-top: 0px;
}Forum: Themes and Templates
In reply to: [MesoColumn] Remove 'Archives for' text from category pagesPlease add link to your project.
Forum: Themes and Templates
In reply to: Always on static font pageLink to your issue please.
Forum: Themes and Templates
In reply to: Custom CSS Randomly deleting \ in code for block quoteThis is in the theme code. This can be changed, but I forget where!!!
Alternatively, you could also, use a child theme and then write the code in the “editor” rather than the custom CSS field.
Forum: Themes and Templates
In reply to: Customizing Theme: Is there Beginner-user friendly?Forum: Themes and Templates
In reply to: How To Move Sidebar To Right Edge Of TemplateHello,
Try this. However, you will need to address the other breakpoints in your theme.
I hope it get’s you started down the right path.@media (min-width: 1200px)
.span4 {
width: 20%;
}.span8 {
width: 75%;
}.sidebar .widget {
margin-bottom: 50px;
float: right;
}}
Forum: Themes and Templates
In reply to: [Pinnacle] Quality of the pictures I uploaded are getting badThe image sizes look fine.
Are you bringing these out of Photoshop or such?
Maybe you have the setting at a lower resolution?Forum: Themes and Templates
In reply to: Menu ColorsTry –
color:#100033 !important;
Forum: Themes and Templates
In reply to: How to see html code?You need to move whichever files you want, header.php or such, to the file structure of your child theme. Via FTP / SFTP……
After you move the header.php or such, then you edit within your child theme or with a text editor such as Dreamweaver or TextWrangler
Forum: Themes and Templates
In reply to: Change color of .menu-toggleYou have to add this to the bottom of your Child Theme’s CSS or in the Custom CSS Section.
I think you have said that you solved the issue and just need it to be permanent.