Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Capture] Error MessageHey there,
You could try this in your .htaccess:
<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>Failing that maybe you should chat with your host, ask them to turn off mod_sec at least for your WP site.
Let me know how that goes. 🙂
Take care
Forum: Themes and Templates
In reply to: [Baskerville] Removing tags from under Comment boxHey there,
You could either edit the template to remove it directly, or you can use this CSS:
.form-allowed-tags{display:none;}
There is a chance that the theme has a CSS field in the options, if not then you instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Alternatively this can be done with a child theme.
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: Replace Registration PageHey there.
Could you not just link to the new registration page you created through the dashboard?
And are you asking to replace this wp-login.php?action=register? Or the multisite equivalent?
If that’s the case (in single site) then there are plugins that can help customise this already:
http://ww.wp.xz.cn/plugins/custom-login/screenshots/
Take care.
Forum: Themes and Templates
In reply to: [discover] How to add image to text widget area in footerHey there,
This is basically the image code:
<img src="URL_TO_IMAGE" alt="ALTERNATIVE">You need to replace:
URL_TO_IMAGE – With the Image URL
ALTERNATIVE – With a description/alternative of the imageYou can use the Text Widget for this:
http://codex.ww.wp.xz.cn/WordPress_Widgets#Using_Text_Widgets
Not sure if you’ve tried anything yet and had issues, or if you needed to know where to start. Hope this helps, but if not then please let me know.
Take care.
Forum: Themes and Templates
In reply to: FreestyleHey there.
Perhaps you intended to post over here: http://themeforest.net/item/freestyle-responsive-wordpress-theme/2396575
Not sure how we can assist here.
Take care.
Forum: Themes and Templates
In reply to: [Marla] Remove menu search barI think perhaps you were editing at the time?
Anyway, you could use a percentage, this is based on the browser size. So you use @media to target smaller screens. This would include the fixed width for larger browsers (to let you align in the middle) and then a 100% width when the screen gets smaller. As a an example of this:
#site-navigation{width:425px; margin: auto;} @media screen and (max-width: 600px) { #site-navigation{width:100%;} }That uses the fixed width on anything 601px and larger. Anything smaller will be 100% of the screen.
Forum: Themes and Templates
In reply to: [Marla] Remove menu search barHey there,
I just took a look on my phone and I see this:
http://monosnap.com/image/GwDQ7rpLVaKgr788yMqXqq6W1YfCBq
It looks like you have this working now?
Take care.
Forum: Themes and Templates
In reply to: [Spun] Site description duplicated on homepageHey cweber08.
I only see one description on your site, I believe this was originally about a duplicate one, so two.
Could you please elaborate further what issue you have, maybe a screenshot of what you have and want to do.
Take care.
Forum: Themes and Templates
In reply to: [Howard Simple] Plugins Gone After Updating ThemeWas your site affected by the MailPoet vulnerability?
Have they already reverted your site?
Take care
Forum: Themes and Templates
In reply to: [Marla] Remove menu search barHey again.
So what would happen with the part in red?
The whole black bar is a container, both the menu and the original search area are within this container.
If you didn’t want the bar at all you could use this:
#site-navigation{display:none}If instead you wanted to remove the black on the right but center that left menu you could do this:
#site-navigation{width:425px; margin:auto}That makes all the bar smaller and aligns it in the middle. You could use a percentage there for a more responsive effect, you need to test downsizing the browser to see how the internal menu collapses.
Or to keep the black bar but centre the menu part:
.menu-menu-container{width:425px; margin:auto}Of course you could also do this within a child theme, in if you want to remove the area altogether then you could copy the header.php file and remove this:
<nav id="site-navigation" class="navigation-main clearfix" role="navigation"> <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'marla' ); ?>"><?php _e( 'Skip to content', 'marla' ); ?></a></div> <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?><div class="fright clearfix"><form method="get" class="searchform fright clear" action="<?php echo esc_url( home_url( '/' ) ); ?>"><input name="s" id="topsearch" type="search" placeholder="<?php _e( 'search...', 'marla' ); ?>"/></form></div> </nav>There is a chance that the theme has a CSS field in the options, if not then you can make a child theme where you could just edit the code rather than using css if you’re simply removing it:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
As I wasn’t totally sure what you wanted to happen with the nav I was trying to be more general to cover most angles. Let me know if you still need help. 🙂
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: Link color in numbered lists not showingThat awesome, thanks for letting me know! 🙂
In that CSS we are basically targeting ordered and unordered lists and only within the content area, we only target the anchor (link).
This is the content area class:
.entry-content
We then want the ordered list within that area. This is the ordered list:
ol
And we also wanted the unordered list (just in case you use both) This is the unordered list:
ul
And then within those you have the list items:
li
And finally the a is the anchor. So the CSS is saying target only the anchors within those list items.
Does this make more sense?
I hope it does. End result either way is that this works for you 🙂
Take care.
It does look like a nice theme! 🙂
Ah, that explains the div there. I should have thought with the placement, it’s just I (as I’m sure you have) seen many people use empty containers to help style.
I really love that you check in on your themes and support them, not that many authors seem take the time from what I’ve seen. I guess life has a tendency to get in the way. It certainly shows real passion, love and enthusiasm. You clearly care a lot about your end users and that’s awesome! 🙂
Take care.
Forum: Themes and Templates
In reply to: [Theme: Trim] change drop down menu font colorHey there,
Are we talking about this theme:
http://www.elegantthemes.com/gallery/trim/
If so then as this is a premium one we won’t be able to fully assist here as per the forum rules:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Just to mention quickly, you’ll probably want to target the class nav-menu and the anchor tag:
.nav-menu a{}And maybe the current menu item:
.current-menu-item{} .current_page_item{}Take care. 🙂
Forum: Themes and Templates
In reply to: Link color in numbered lists not showingHey there,
Not sure if there is an option in the theme but the follow CSS will sort that:
.entry-content ol li a, .entry-content ul li a {color:#f063c7}You can find a list of hex codes here:
There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: Jupiter ThemeHey there.
As this is a commercial theme you should contact the theme author for support with this:
http://themeforest.net/item/jupiter-multipurpose-responsive-theme/5177775/support
Unfortunately as per the forum rules we’re unable to assist further here:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Hope you have a great weekend! 🙂