Thimothe
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [zAlive] Replace search box with text on right side of header?You’re welcome. I’m glad you got it to work!
Forum: Themes and Templates
In reply to: [Custom Community] Custom Community post pages display problemHi Rich,
Were the 3 posts being displayed before changing the side-bars and content placement? When I look at your code, it doesn’t seem related to the CSS but to some option of your slider/theme instead. In which case, mods will probably ask for a new thread.
Forum: Themes and Templates
In reply to: [Quark] logo displays outside the maxwidth of headerHi Cindy,
Can you provide more details on where you want the logo to appear? Quickly looking at your site, if you remove the left margin of your #masthead, it aligns the logo on the left edge of your “Bring the party with you” header.
The custom css to achieve this is
#masthead {
margin:0;
}If you plan on playing a lot with CSS, have a look at Chrome Developer tools or Firebug. They let you change CSS on the fly and inspect your page’s elements.
I hope this helps
Forum: Themes and Templates
In reply to: [zAlive] Replace search box with text on right side of header?You’re welcome.
You should upload the header.php from the parent theme folder located in wp-content/themes/zalive. This way, your child theme will use this file instead of the parent header.php.
Forum: Themes and Templates
In reply to: [Vantage] Active Menuso you’ll need to apply some custom css to make it work. Look for an option in your theme options and if you can’t find one, you can proceed with a Customm css plugin or creating a child theme.
In the custom css, you’ll want to style according to this example
// Styling for the parent menu item .main-navigation ul li.current-menu-parent { background-color:green; //just an ugly example } // Styling for the current page .main-navigation ul ul li.current-menu-item { background-color:red; //just an ugly example }And if you want both the parent and the current menu item to have the same styling, you can combine both declarations together like this
.main-navigation ul li.current-menu-parent, .main-navigation ul ul li.current-menu-item { background-color:yellow; //just an ugly example }I hope this helps
Forum: Themes and Templates
In reply to: [Custom Community] Custom Community post pages display problemI discovered that the width is set in the width-calculators.php file. It probably is a dynamic calculation being performed according to some theme options but I can’t be sure without seeing the option page for this theme.
Have a look to see if there is a place where you can change the width of your post/pages in the options.
Otherwise, you can try overriding this value by going to Appearance -> theme settings -> CSS and pasting this:
#container .row-fluid .span8, .row-fluid .span8 { width: 613px!important; } div.page div.post-content, #wpbody #post-body-content { width : 613px!important; }Note: I don’t like using !important declaration. It should be used as a last resort if there is no option for the post width and if you don’t feel like digging in the code to fix it the proper way.
Note2: I changed the width from 675px to 613px as it is the value used on your other pages which display properly and it’ll keep it consistent.
You will get it to work.
Forum: Themes and Templates
In reply to: wok on two websites in one timeIf you don’t need to have the blogs connected together, then yes it is the best and simplest option.
Let us know if you need more help
Forum: Themes and Templates
In reply to: [rtPanel] Change White Background To Image/Different ColorHi Mike,
How about applying your background image using CSS onto #main-wrapper? It works on my side when I inspect your page using Developper tools from Chrome.
Forum: Themes and Templates
In reply to: [zAlive] Replace search box with text on right side of header?You can do that by creating a child theme and modifying the header.php file so that you have a section to put your contact information instead of the search bar.
Forum: Themes and Templates
In reply to: [F2] Center MenuCan you provide a link to your site please? It will help us assist you.
Forum: Themes and Templates
In reply to: [Houston] add mediaHi,
do you mean in the admin interface when you publish a new page/post? If so, there is a link just over the editor to add a new media.
Otherwise, where would you want to add a media?
Forum: Themes and Templates
In reply to: [Theme: Responsive] Deleted Home PageHi Joe,
I’m sorry you have issues with your homepage. It should be fixed quickly.
First, you don’t need the initial homepage anymore, you should delete it definitely by going in your Trash and clicking the Delete definitely link.
Then, you’ll be able to change your permalink back to home-page.
After that, you can follow the instructions at Creating a Static Front Page to change which post is your front page.
It should now be resolved.
Let us know if you need more help.
Forum: Themes and Templates
In reply to: How to get the homepage to display in full width?Hi,
You can try this css:
.page-id-55 .entry-content { padding-right:0; } .page-id-55 .tertiary { display:none; }This codes is applied only to the post #55 which in the current case is your home page. It removes the padding on the right where the sidebar was and it makes the sidebar disappear. You’ll need a custom css plugin or child theme to avoid breaking compatibility with future updates.
Hope this helps
Forum: Themes and Templates
In reply to: [Vantage] Active MenuHi,
can you post a link to your site please? It will make be easier to assist you.
Thanks
Forum: Themes and Templates
In reply to: Drop-down meny falls behind SlideshowHi,
the z-index works on my side using Chrome’s Dev Tools.
You’ll need to apply this CSS rule to some custom CSS either using Custom CSS or a Child Theme.
.main-navigation li ul { z-index: 5; }Make sure that there is no caching enabled so you can see your changes.