noahcryns
Forum Replies Created
-
Forum: Plugins
In reply to: [Social comments by WpDevArt] Facebook is asking for “Business Verification”Thank you for your response:)
Forum: Themes and Templates
In reply to: [Cannyon] Header Problems1. Try to find this first.
There is probably a setting to “disable breadcrumbs”2. If that doesn’t exist, try CSS below:
.page-template-default div.mythemes-page-header {
display: none;
}Forum: Themes and Templates
In reply to: Demo Content InstallI believe you can use the import button to bring your .xml file in.
*Also let theme developer know of your issue though theme support, so he can address the instructions or possible issue in theme.
Forum: Themes and Templates
In reply to: [SG Window] Tags and Category Button SizeThis can help get you started changing the CSS for the button.
#page .project-list a, #page .category-list a, #page .tags a {
font-size: 12px;
padding: .2em .5em;
}Forum: Themes and Templates
In reply to: Change the font color and hover color on submenu1. You will need to use the “Page Class” declaration to change on certain pages2
2. This will get you going in the direction of color changing
#topmenu ul li ul:not(.mega-sub-menu) {
background: green;
}Forum: Themes and Templates
In reply to: move logo to the rightCSS – Probably
{
float:right;
}*For some reason my Google CSS tools are not working on your site.
Forum: Themes and Templates
In reply to: Pdf file doesn't show up.1. Maybe you have a “Cache” issue
2. Are you sure the PDF was uploaded? Check by going to the “media page” where you upload in wordpress and check that the link that is showing works.
If the link is showing at that URL, then it’s the way you are linking in your page content.3. FTP the pdf directly to the root and see if you can pull it up there
Forum: Themes and Templates
In reply to: [Hueman] Left Sidebar @ bottom of pageSomething major changed.
– Did you update this site not using a “Child Theme”
– If you did your changes were probably lost.This will get you going down the path….
.content {
width: 70%;
position: relative;
float: left;
}.s1 {
width: 30%;
z-index: 2;
float: left;
}Forum: Themes and Templates
In reply to: Theme Freak: CSS Header helpI’m not sure if this is what you are going for….
#top-bar {
background: rgba(221, 221, 221, 0.7);
position: absolute;
bottom: 0px;
left: 0;
right: 0;
border-bottom: solid 0px #dddddd;
}Forum: Themes and Templates
In reply to: [Olsen Light] Blog Header Full Width SizeProbably best to widen the containing <div> to 100% of screen.
Then make the image 100% width.Forum: Themes and Templates
In reply to: [Maskitto Light] footer contentCheck your footer.php
Use a child theme.
https://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorialThere are plugins for child theme.
This is the best part of this theme.
Maybe find a new theme?Forum: Themes and Templates
In reply to: [Brasserie] home page not the same as demoThe theme developer generally gives instructions for setting up the demo content.
– Have you imported the “demomaterials.xml”
Forum: Themes and Templates
In reply to: [Refur] Modifying PHP in child theme1. There are plugins that allow for this kind of “different header per page”
– You could also create “custom page templates” for each page…..Probably more options here.
2. This link may help you get there.
https://slocumthemes.com/2014/05/adjust-set-size-featured-image-size-wordpress/Forum: Themes and Templates
In reply to: Can't get rid of border around my linksWhich browser are you using?
I am using Google Chrome. I do not see the issue.