.
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How can I change my sidebar color?This one is for the sidebar heading background color:
#sidebar > div.box h3, #sidebar.default > div.box h3 { background: #004E78; /* sidebar heading background */ text-shadow: 0px -1px 0px #181818; } #sidebar h3 a { color: #fefefe; /* sidebar heading link color */ }The default of the text shadow is red, too, so I put the text-shadow line there in case you feel like you need to change to change it to something else).
The default heading link color is also a dark color. It’s hard to read dark-color text on dark-color background. So I add it there to change it to lighter color.
Forum: Themes and Templates
In reply to: Change footer color in TetrisYou can setup a child theme and place the code at the bottom of the style.css of the child theme. Instruction here: http://codex.wordpress.org/Child_Themes
You can also use a plugin like Jetpack (an official plugin by WordPress themselves) or Simple Custom CSS.
- If you choose Jetpack: Install and activate the plugin –> go to Jetpack –> Settings –> activate custom CSS module –> go to Appearance –> Edit CSS — copy-paste the code there.
- If you choose Simple Custom CSS: Install and activate the plugin –> then go to Appearance –> Custom CSS –> copy-paste the code in there.
You can create a child theme and place the code at the bottom of the style.css of the child theme. Instruction here: http://codex.wordpress.org/Child_Themes
If that sounds too troublesome, you can use plugins like Jetpack or Simple Custom CSS.
- Jetpack has many features; custom CSS is only one of them. After installing and connecting it to your WordPress.com account, you need to activate the Custom CSS module in Jetpack settings to access the extra option in Appearance –> Edit CSS. Copy-paste my code in there.
- Simple Custom CSS is just that: simple. After installing, you’ll see the custom css area in Appearance –> Custom CSS. Simply copy-paste my code in there.
Forum: Themes and Templates
In reply to: Remove title on page for the Capture themeDid you setup your child theme properly? Both Design Locker and I provided pretty much identical code; either of ours will work.
Please check your child theme for error. We can’t check because we can’t see your site.
I’ll go ahead and leave this to Design Locker because it’s really confusing to have 2 helper posting, haha. This will be the last post that I make in this thread.
Forum: Themes and Templates
In reply to: Remove title on page for the Capture themeJetpack is an official plugin from WordPress. It has many features, one of which is a Custom CSS. After installing, configuring, and activating the module, you can go to Appearance –> Edit CSS –> copy-paste my code there.
Simple Custom CSS is another plugin that does only Custom CSS. After installed, you can go to Appearance –> Custom CSS –> copy-paste my code there.
Forum: Themes and Templates
In reply to: Remove title on page for the Capture themeYou mean the post title? That huge “Home” text?
If you want the post title to not appear only on the home page, use this:
.home .post-title { display:none; }If you want the post title to not appear anywhere, use this:
.post-title { display:none; }Forum: Themes and Templates
In reply to: Change footer color in TetrisTry adding this to your custom CSS:
#footer { background: #E1E6E6; }Forum: Themes and Templates
In reply to: [Theme: Divi] How to change default paragraph size in blog postsDivi from Elegant Themes? For future reference, you’d probably want to post your question at Elegant Theme’s help forum instead of here . . . because they’re the ones that have received your money.
Elegant Themes support forum: https://www.elegantthemes.com/forum/
I need to up the font size of the paragraph font for all posts, by changing the default font size.
Just the posts font size? Then this custom CSS should be sufficient:
Please not that you’ll need to change the numbers because I don’t know which font size you want.
.post { font-size: 28px; /* post font size */ line-height: 120%; /* control top and bottom spacing between lines */ }You can go to Appearance –> Divi Theme Options –> make sure you’re on the General tab –> scroll down until you see a Custom CSS box –> copy-paste the code I’ve provided above into that.
Forum: Themes and Templates
In reply to: [Travelify] Mobile Version cant be viewed perfectlyIf the issue is resolved, could you please mark this thread as “resolved”? That would be much appreciated! 🙂
Thank you
Forum: Themes and Templates
In reply to: [Hueman] Rev Slider problem in mobile versionAwesome! Could you please mark this as resolved? That would be much appreciated.
Thank you
Forum: Themes and Templates
In reply to: [Hueman] Rev Slider problem in mobile versionIf you’re unable to setup a child theme and have issues with Jetpack , you can try Simple Custom CSS.
Like its name suggest, it’s simple. After install and activate it, you can go to appearance –> custom css –> copy-paste my code there.
Forum: Themes and Templates
In reply to: [Travelify] Mobile Version cant be viewed perfectlyYes, it works. See screenshot here: http://i.imgur.com/3nCaA38.png
Try copy-paste it to the bottom of your custom CSS. make sure to clean up your browser’s cache afterward.
Edit: Are you sure you’ve setup the custom CSS properly? I just checked your site with my browser’s inspect tool. I didn’t see any custom CSS being apply. It’s not that it’s not working or if you put in the wrong place; it’s just not there at all. . . .
Please let us know how you’re adding these custom CSS. There probably an issue with the method itself.
Forum: Themes and Templates
In reply to: [Hueman] Rev Slider problem in mobile versionIf you dislike using plugins, you can create a child theme and copy-paste that code to the bottom of style.css of the child theme. Instruction here: http://codex.wordpress.org/Child_Themes
If you’re okay with using plugins, WordPress themselves have an official plugin call Jetpack. It has many features and custom CSS is one of them. Once installed and configured, you can copy-paste the code to Appearance –> Edit CSS.
Forum: Themes and Templates
In reply to: [Arcade Basic] Remove post-block columnsCould you please provide a link to your site? It’s easier to work out a solution if we can actually see the problem.
Thank you,
Forum: Themes and Templates
In reply to: [Travelify] Mobile Version cant be viewed perfectly@theme Author, it isn’t working properly on your demo either. This is what I see when viewing demo: http://i.imgur.com/rurJloe.png. Notice that everything is responsive but not the post content.
—-
Back to the question, it’s probably because the width isn’t set properly on smaller screens.
Please add this code to your custom CSS and see if that works:
@media (max-width: 767px) { #primary { max-width: 100%; } }