.
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Custom position of Right sidebarTry localize it to home only:
.home .right.tc-sidebar { margin-top: -430px; /* home page sidebar margin top */ }Adjust the number as needed. I have to admit that it’s a very messy way to achieve this, though.
Forum: Themes and Templates
In reply to: [Customizr] Custom position of Right sidebarCould you please provide us a link to your site? Actually seeing the issue would help a lot in solving them.
Forum: Themes and Templates
In reply to: Need Help! Header change Menu placement1) You can use this CSS:
#masthead { display:none; }2) The easiest way would be copy header.php into your child theme, then add the revolution slider code just above the navigation code, like in this screenshot
If done right, you should have something like this: [screenshot]
Forum: Themes and Templates
In reply to: [Invert Lite] Why doesn't work on any IE?IE8 is the final version of IE for Windows XP, which has reached the end of support. Google has stopped supporting them; even Microsoft has stopped supporting them.
Supporting IE8 is not industry standard any more; it’s more of an optional thing now. IE8 doesn’t support CSS3 or @media queries, making supporting it extremely annoying. It is understandable if a developer deem it too troublesome and not worth the effort to support IE8.
As for IE7 and IE6, you won’t find any current developer who supporting these by default. You’ll need to specifically request for the support AND pay extra fee to support them. I can’t imagine anyone would agree to support IE6 nowadays; I’m positive that most will still turn you away if you request support for it, unless you’re willing to pay thousands of dollars to do so.
Forum: Themes and Templates
In reply to: [Theme: Graphy] Padding between a post title and the date.but I’d love to find the real source so I don’t have to result to that declaration as a permanent fix.
We should never edit the parent theme’s files when customizing our site. Never! If you have been editing the parent theme, please stop and consider using a child theme instead.
Forum: Themes and Templates
In reply to: [Invert Lite] Why doesn't work on any IE?Why this theme doesn’t work on any IE?
I just tested the demo in IE 11, IE 10, and IE 9 in Windows 7 environment, and IE 11 in Windows 8.1 environment. It works on all of them. The problem isn’t with the theme.
Forum: Themes and Templates
In reply to: [Hiero] text wrap frontpageIt’s like that because the summary text is wrap in
<p></p>, which is a block-level element.Try this:
.entry-summary { display: inline; }Forum: Themes and Templates
In reply to: [Theme: Graphy] Padding between a post title and the date.You could do
.entry-title { margin-bottom: 0px !important; }You can go into negative values if needed (for example, -5px).
You can add this into your child theme’s CSS:
#cir-content-wrapper { padding-top: 0px; }Adjust the number as necessary.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Firefox: Unwanted adsI tested the site on my Firefox on both Windows and Linux; I don’t see any ad. (latest version, default settings, with no add-on).
Try reset your Firefox to its default state then try again. Instruction here: https://support.mozilla.org/en-US/kb/reset-preferences-fix-problems#w_solution-1-reset-firefox-to-its-default-state
Edit: I’ve also tested your site, HollywoodStrippedBare.com, on OS X Mavericks, Firefox 30, default settings. I don’t see any ad either.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Automatic frames around post picturesYeah, using CSS:
.post-thumbnail img { border: 2px solid #F8AFB8; /* border around thumb image */ }The #px defines teh thickness of your border.
The next value can be any of these: solid, dotted, dashed, double, groove, ridge, inset, outset.
The final value is the color. You can use colorpicker to grab the color code.Forum: Themes and Templates
In reply to: [avenue] Take the "Leave a Reply" offAt the top of Edit Page, you’ll see a Screen Options button. Click on it and check the Discussion box.
- Screenshot: http://i.imgur.com/kQMYtZq.png
Now look at the bottom of the page, you’ll see an option to allow/disallow comment appear. Uncheck the box and update the page to disable comment on that page.
- screenshot: http://i.imgur.com/TvstQ5J.png
If you wish to make disable comment as the default for all future pages, then you’ll need to go into Discussion –> Uncheck the allow comment on new articles box.
- screenshot: http://i.imgur.com/bYkuMpI.png
Forum: Themes and Templates
In reply to: [Writr] How to remove page icon and a few other tweaksI would like to remove the circle icon with the piece of paper that shows up on each page next to the title.
All codes posted in this reply will be CSS. Place them at the bottom of your child theme’s style.css or custom CSS boxes.
.entry-format-badge { display: none; /* hide icon next to page title */ }I’m also interested in changing the font size on each page header. I’d prefer if it was gone as well actually but making it smaller and lighter would work.
Not sure which one you would prefer: to change font size or make it disappear. (I’m assume that you’re talking about the page title.) I’ll just post both codes.
To change font size:
.entry-title { font-size: 14px; /* page title font size */ }To hide page title:
.entry-title { display: none; /* hide page title */ }I’m not really happy with the margin between the image and the text below. Is that something that can be changed?
Most likely yes, but I’m not sure which one you mean. Could you please give me more info on this one? What image and text?
Forum: Themes and Templates
In reply to: [Adelle] Change Font & Colour of Blog Post Title@import url(http://fonts.googleapis.com/css?family=Muli:400,400italic); .article h2.post-title a { color: #666; /* font color of blog post titles */ font-family: 'Muli', Verdana, Helvetica, Arial, sans-serif; /* font family, use together with Google Font to import web font styles */ font-style: normal; /* italic or normal */ }You can use this to grab the color codes: http://colorpicker.com/
YOu can grab the fonts you want to replace teh @import font from here: https://www.google.com/fontsForum: Themes and Templates
In reply to: Can someone tell me what theme this is?One of the fastest way is to check their CSS. In this case, you can view the style.css of that site here: http://dishingupthedirt.com/wp-content/themes/DishingUpTheDirt/style.css