ellp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Stylesheet not workingHello!
There is no css link on your PHP file… Please read this page:
http://codex.wordpress.org/Theme_Development
Hope it helps.
Forum: Themes and Templates
In reply to: Logo problem in responsive theme.Hello Abhiskek.
You can insert an smaller image using css media queries… Just google it. You will find tons of info about it.
Hope it helps.
Forum: Themes and Templates
In reply to: erase tamplateDelete it using FTP.
Forum: Themes and Templates
In reply to: How to change text color of WordPress page content in style.css?Hello!
I saw your code and I think there is a missing div in the end of your code. Place it and test again.
Let me know if it works.
Forum: Themes and Templates
In reply to: [Beach] Sidebar MenuHello MX!
If your site has an custom css plugin or form, you can insert this code
.widget{ font-size: 12px; /*REPLACE-12-TO-YOUR-FONT-SIZE */ }Let me know if it helps 🙂
Forum: Themes and Templates
In reply to: [Matheson] Post page sidebar help?Hello Angel!
If I understand your problem correctly, you want to display your blog posts with the sidebar on it. Is that correct?
If so, you have to check your theme. Your theme must have an template that displays your sidebar. Check this link:
http://codex.wordpress.org/Page_Templates
Let me know if it helps 🙂
Forum: Themes and Templates
In reply to: Show categories in the sidebarHello,
Did you have looked at this plugin?
http://wordpress.org/plugins/sub-categories-widget/
Let me know if it helps.
Hello!
Check if this theme has a custom menu for footer. If it has it, you can add or remove links as you like. Check this link out.
http://en.support.wordpress.com/menus/
Hope it helps.
Forum: Themes and Templates
In reply to: Theme Horse footer removalHello Barnes 🙂
You can do it using a custom css plugin and add this code:
div.copyright{ display:none; }Let me know if it helps 😉
Forum: Themes and Templates
In reply to: Sidebar question about themeHello AMS!
Cut the extra white space on logo. You don’t need to change the theme… Is more easy and fast.
Let me know if it helps.
Forum: Themes and Templates
In reply to: [Chunk] change page logo by CSSHello,
You are using an wordpress.com structure. If your theme doesn’t have an option to upload a logo or if you don’t buy the CSS custom package from them you can’t do nothing.
Cheers.
Forum: Themes and Templates
In reply to: [evolve] move the site title and taglineHello clauhau!
Your theme has 99.9% chance to exist an panel to change this or remove this text. Please check the theme documentation or check the theme/slider options.
Let me know your findings…
Forum: Themes and Templates
In reply to: [Customizr] Custom CSS suddenly not workingHello Liz!
If you have more custom css code i recommend you to remove all custom css and save it on a external file on your desktop. After that paste block by block and test. Maybe one of your styles are overriding or braking the other styles.
Let me know your findings…
Forum: Themes and Templates
In reply to: [Mystique] Mystique Theme – Page Layout AdjustmentHello Pautom!
I don’t know if this theme has an Custom CSS feature on it. If it has paste this code on it:
.entry{ margin-top: -12px; }If your theme doesn’t have an Custom CSS form, install this plugin and paste the code in to it.
http://wordpress.org/plugins/simple-custom-css/
Hope it helps.
Forum: Themes and Templates
In reply to: [Stargazer] Change title sizeHello,
To hide the h1 on the home only you can use this code:
body.home h1.entry-title.font-headlines{ display:none; }Sorry, my mistake. There are an extra point in the code… Replace with this one:
h2.entry-title.font-headlines{ font-size:30px //change 30px to value you need } h3.widget-title.font-headlines{ font-size:20px //change 20px to value you need }