Digilodger
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to remove posted on / in – latest updatesTwenty Ten?
Try this code instead, put it into your child-theme CSS or custom CSS; or if you have Jetpack installed, go to Appearance –> Edit CSS:
.entry-meta { display:none; }
I don’t recommend edit the parent theme directly (edit Twenty Ten’s style.css, in this case) because when it updates, you will lose all of your changes. But if you have no choice, then put the code at the end of the style sheet.
Forum: Themes and Templates
In reply to: How to remove gap under the header menuWe can’t help you unless we can visit your site (so we can look at the code) or at least know which theme you are using.
Forum: Themes and Templates
In reply to: Changing Just Dropwdown Menu Tab Font/Color MantraTry add these to your custom CSS or child-theme CSS; or if you have Jetpack installed, go to Appearance –> Edit CSS:
This will change the font color of your submenu:
#access ul ul a, #access ul ul ul a { color: #000; }
This will change the background color of your submenu:
#access ul ul li, #access ul ul ul li { background: #e5e1e1 !important; }
Forum: Themes and Templates
In reply to: [Twenty Eleven] Colour 'border' under menu barTry adding this to your custom CSS or child-theme CSS; or if you have Jetpack installed, go to Appearance –> Edit CSS:
#access { border-bottom: 4px solid #FF0000; /* Add bottom border to navigation */ }
Try adding this into your custom CSS or child-them CSS; or ifyou have Jetpack installed, go to Appearance –> Edit CSS:
.sfw-comment-meta a { color: #666; } /* Change color of comment time&date */ .sfw-comment-content p, .sfw-comment-content a { color: #000; } /* Change color of comment content */
Forum: Themes and Templates
In reply to: Remove login from HeaderYou mean this Aplau theme?
If so, you can add this to your CSS to hide it:
#login { display:none; }
Forum: Themes and Templates
In reply to: Can't remove border around images inserted into postsTrying adding this into your custom CSS or child-theme CSS; or if you have Jetpack installed, go to Appearance –> Edit CSS:
#content img, #content p img { padding: 0px; }
Forum: Themes and Templates
In reply to: contact form – text colorI’m unable to reproduce this on IE9 and IE10, latest version of Firefox, Chrome, and Opera. The contact form appears with black text on white ground.
Did you fix this yourself? If not, could you tell me on which browser you saw the white text on white background?
——————-
If you still wish to change the color of the text in your contact form, though, here are the codes:
.fm-form input { color: #000; } /* Change color of text in fm-form input area */ textarea {color: #000;} /* CHange color of input text in message field */
Here’s the background of the input boxes of your contact form:
input {background-color: #fff; } /* Change background color of input fields of contact form*/ textarea {background-color: #fff; } /* Change background color of message field */
Forum: Themes and Templates
In reply to: [Frantic] Changing Link ColorTry adding this into your custom CSS or child-theme CSS; or if you have Jetpack installed, go to Appearance –> Edit CSS:
a { color: #f00; } /* Change color of links */
You can use https://www.colorpicker.com/ or something similar to pick out the color you want.
Forum: Themes and Templates
In reply to: [GamePress] Remove the header backgroundPut this into your custom CSS or child-them CSS; or if you have Jetpack installed, go to Appearance –> Edit CSS:
#header { background: none;} /* Don't display header background */
————–
If you wish to change the header background color, then use:
#header { background: #393939;} /* Change header background color */
Change the #value to something you want. YOu can use https://www.colorpicker.com/ to pick the color you want.
Forum: Themes and Templates
In reply to: logo isnt centeringMay I ask where did you put it? I re-tested it prior to making this post and it works. It dropped the banner (with InternationalRec yada yada) down 20 pixels.
Thanks!
Forum: Themes and Templates
In reply to: logo isnt centeringAdd this into your custom CSS or child-theme CSS; or if you have Jetpack installed, go to Appearance –> Edit CSS:
.logo { margin-top: 20px; } /* Add more space to the top of logo */
Change the 20px to whatever you want. If you don’t have custom CSS, child-theme CSS, or Jetpack, then please add the code to the bottom of your main style.css.
Forum: Themes and Templates
In reply to: What's is this?The theme is Wumblr by Themify: https://themify.me/themes/wumblr
And yes, it is using WordPress, though it seems they haven’t updated to the latest version of WordPress yet.
Forum: Themes and Templates
In reply to: oxygen theme title colorTry putting this into your custom CSS or child-theme CSS; or if you have Jetpack installed, go to Appearance –> Edit CSS:
#site-title a { color: #0DA4D3; } /* Change site-title color */
Forum: Themes and Templates
In reply to: Getting rid of the navigation barThis didn’t work… =( but thank you for your suggestion.
I re-tested it just 30 seconds prior to making this post and find it working. COuld you please tell us where you have inserted that code?
Thanks!