batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS code to change color of links in body textSorry I didn’t see this earlier.
Ideally you would want to use a custom css plug-in or a child theme as all edits to the themes style.css will be overwritten in the case of a theme upgrade.EDIT
I see you use the Jetpack plugin, you can activate the custom css module in that.Forum: Themes and Templates
In reply to: [Theme: Twenty Fourteen] How to change top menu font size?.primary-navigation a { font-size: 16px; }Forum: Themes and Templates
In reply to: [Spun] Removing Footer.site-info { display: none; }Forum: Themes and Templates
In reply to: [Spun] putting menu at bottom of home pageThe only problem doing it this way is the margin percentage will need to change based on the amount of content you have on the page. Maybe someone else will have another idea.
.home .main-navigation { position: absolute; width: 100%; text-align: center; float: none; margin: 60% auto; }The best way to do what you want is to edit the header & footer PHP files with if statements, unfortunately I’m not a PHP guy.
Forum: Themes and Templates
In reply to: [Parabola] Editing the NavigationMove the sub-menu a little to the left so it’s not cutoff.
#access ul ul { margin-left: -40px; }Forum: Themes and Templates
In reply to: I can not load my theme, why?That theme seems very old, it’s probably not updated for current WordPress releases.
Forum: Themes and Templates
In reply to: [ComicPress] Site disappeared please helpGlad you got it fixed, and love the homepage toon 😉
Forum: Themes and Templates
In reply to: [Spun] centering header imageAdd to a child theme or use a custom css plug-in.
.header-wrapper { float: none; width: 100%; text-align: center; }Forum: Themes and Templates
In reply to: [ComicPress] Site disappeared please helpAlso, whenever you modify PHP files you should be using a child theme.
Forum: Themes and Templates
In reply to: [ComicPress] Site disappeared please helpRe-install the theme. Leave the old directory named comicpress-bad.
You will lose any customization you may have already made but you still have the files as reference for re-applying them.Forum: Themes and Templates
In reply to: [ComicPress] Site disappeared please helphttp://jfgtoons.com/wp-admin/
Gives a WordPress login screen.Forum: Themes and Templates
In reply to: [Clean Retina] Change all the blue to another colorIf your editing the original theme style.css, all those changes will be erased upon theme upgrades.
You should use a custom css plug-in for css edits or a child theme.Forum: Themes and Templates
In reply to: [ComicPress] Site disappeared please helpYou will need to go into your site thru FTP or the hosts admin panel (usually C-Panel). You then need to navigate to ??\wp-content\themes.
Rename your comicpress folder to comicpress-bad. This will make WordPress use the default theme (I hope you didn’t remove it).
Let us know if that works.Forum: Themes and Templates
In reply to: [Customizr] issue centering the title of the pages.Try this one:
.entry-header { text-align: center; }Forum: Themes and Templates
In reply to: [Theme: Expound] Color of continue reading buttonUsing the colors from the menu. Make sure you refresh the page and maybe clear the cache. The color changes do show in Chrome DevTools.
a.button-primary { background: #a499c6; color: black } a.button-primary:hover { background: #a76ce2; }