tzedekh
Forum Replies Created
-
I tried it in the theme’s style.css file (I had added #responsive and some other styles there to modify an older version of your menu), and it didn’t work there, even with the “! important” declaration (that should work but doesn’t). I suspect that because the menu’s CSS file loads after style.css, it overrides values set in style.css.
I am using the free version. Custom CSS is available only with the Pro version, so I added it to the bottom of the menu’s CSS file. That worked.
- This reply was modified 9 years, 5 months ago by tzedekh.
Sure — http://www.jamestella.com. The button alignment is set to right align, but it appears on the left. I’ve hidden the Responsive Menu on the home page. Click on any of the listed links — Bio, Works on Paper, Cast Paper, Exhibitions, Stellagrams, or Contact — to go to a page with the menu.
- This reply was modified 9 years, 5 months ago by tzedekh.
One solution, which is a little heavy-handed, is to install the Plugin Organizer plugin. On the Settings page, under “Selective Plugin Loading,” select “Enable” and save. Then in the WP admin page, click “Pages” and open the page, scroll down to the Plugin Organizer panel, set the slider for Responsive Menu to “Off,” and click “Update.”
Forum: Plugins
In reply to: Wptexturize gallery title and caption info+1
Forum: Themes and Templates
In reply to: Page centered in Firefox, left aligned in IE?Try playing with
body {
margin: 0px;
padding: 0px;
text-align: center;
}#container {
text-align: left;
margin: auto;
width: 760px;
}Where “container” is the ID of the div containing your content. As you’ll notice, you’ll have to reset the text alignment for “container” (or the divs it contains) or all text will center.