MikeArt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Gold] What happend to Contact template?Are you using a plugin for the contact form?
Mike
Forum: Themes and Templates
In reply to: I want to extend the height of my sidebarsHi bokin
Here is what you have to do:
Open the css file of your theme. It’s called templates.css. Scroll down to line 1523. There you will finde following code:
#sidebar { background-color: #FFFFFF; border-left: 1px solid #CCCCCC; border-radius: 3px; padding: 10px 15px; }Now add height and position to the code like this:
#sidebar { background-color: #FFFFFF; border-left: 1px solid #CCCCCC; border-radius: 3px; padding: 10px 15px; height: 100% !important; position: absolute; }Mike
Forum: Themes and Templates
In reply to: Change/Import a new theme into WP 3.8???Hi Spider80
In your admin panel go to “Appearance -> Themey”. There you will see your Theme you want to activate. Now you have to click on the theme and you will get a popup. In this popup there a Button at the bottom where you can activate your theme.
Mike
Forum: Themes and Templates
In reply to: Need To Remove Portfolio Background ImageHi digistudios
I would just remove that line of code in the page template or give it another css class. Look for a file something like: portfolio-2columns.php. I’m don’t know how the file is called, just look in your theme folder (root).
If your not sure which line, you can copy the code in here and I’ll take a look.
Mike
Forum: Plugins
In reply to: NextGenGallery effects (lightbox,fancybox) does not workHello Grimfang
Seems to work now, I have the same problem… How did you manage to fix the problem?
Mike
Hello mirci.zm
I had the same problem.
The “Fancybox” effect doesn’t show the description. But the “Lightbox” effect does.
Here is what you have to do: On the left site go to “Other Options” and then open the Tap “Lightbox Effects”. In there you have to select “Lightbox”.
Lightbox automatically shows the description!
Mike
Forum: Plugins
In reply to: [JQuery Accordion Menu Widget] Submenus alway opend (expanded)Hi kimil
I used an other theme and the issue was gone. Could be an issue with the theme’s css.
Does the issue still appear when you turn to default theme?
MikeArt
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] How to add a reset buttonI know your Question was 11 months ago, but maybe I can help someone crossing this post. Here the solution for your first question:
To translate the button, add a value. Example:
<input type="reset" value="TEXT HERE" />Second question:
If you want your buttons to look like the other Buttons just add the class, full code should look like this now:
<span class="simple_button"> <input type="reset" value="TEXT HERE" /> </span>Mike
@ Paul-M-UK
Thanks! Worked for me!