batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Gold Changing top menu font size and background colourYou definitely should be using a child theme for editing PHP files otherwise all the changes you have made will be overwritten if you update the theme. CSS only edits can get away with a plugin but IMO you should use a child for any customization.
EDIT: At least your learning this before you update the theme 😉Forum: Themes and Templates
In reply to: Gold Changing top menu font size and background colourHere are the default settings, make sure you use a custom css plugin or a child theme.
Background color.navbar-inverse { background-color: #10B9B9; border-color: #10B9B9 !important; }Font color
.navbar-nav>li>a { color: #fff !important; }Forum: Themes and Templates
In reply to: [Leaf] Need urgent help. Can't access wp-adminForum: Themes and Templates
In reply to: changing color, font, size and making text bold in headerYou will want to install a plugin like Simple Custom CSS and enter the following blocks of code under Appearance > Custom CSS.
For the title:.site-title { color: #ff0000; font-size: 30px; font-family: monospace; }For the description:
.site-description { color: #ff0000; font-weight: bold; font-size: 30px; font-family: monospace; }Forum: Themes and Templates
In reply to: [NSFW] Remove the Author Info under each postYou can activate Jetpacks custom css module and add the following code to hide it.
#author-info { display: none; }EDIT: And just for info WordPress.com only handles sites they host, WordPress.org is for self hosted sites.
Forum: Themes and Templates
In reply to: [Emphaino] Fixed Top BarTry this
#top-bar { position: fixed; width: 81%; z-index: 20; }Forum: Themes and Templates
In reply to: [Minimatica] Hiding Footer-widgets on homepageTry this in your childs css file.
.home #footer-area { display: none; }Forum: Themes and Templates
In reply to: [Hostmarks] Child Theme for Hostmarks?Maybe this thread will help.
http://wordpress.org/support/topic/child-theme-not-incorporating-child-stylecss?replies=7Forum: Themes and Templates
In reply to: [Tiny Forge] changing fontsYou need to use more specific declarations.
#content p { font-size: 20px } .entry-content p { font-size: 20px }Forum: Themes and Templates
In reply to: [Analytical Lite] Woocommerce compatibilitySee if this video helps.
https://www.youtube.com/watch?v=L6Mj1tcC47gForum: Themes and Templates
In reply to: I've tried so hard to change text link colors… need help!Link text:
.entry-content a { color: red; }Change color when hover:
.entry-content a:hover { color: orange; }Forum: Themes and Templates
In reply to: Unordered bullets not showingThe margin is so it stay in bounds with the title background color.
.xoxo ul { list-style-type: disc; margin-left: 20px; }Forum: Themes and Templates
In reply to: Make logoo biggerTry this
.logo-container { height: 150px; }Forum: Themes and Templates
In reply to: How to get rid of "date" on home page and every page.post .meta { display: none; }Forum: Themes and Templates
In reply to: [Hostmarks] Child Theme for Hostmarks?That all looks good.
Have you tried activating it when its empty just too see if it shows while viewing page source?