Maria Antonietta Perna
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Forever theme right side bar on the bottomThis is the code. Find #primary in your stylesheet
`#primary {
float: left;
margin: 0 -33.2292% 0 0;
width: 60%;
}I’ve changed width:100% to width:60% and the sidebar was back on top.
Forum: Themes and Templates
In reply to: [Theme Junkie] Change CSS, please help me!You’re welcome.
Forum: Fixing WordPress
In reply to: Forever theme right side bar on the bottomIt worked with firebug, unless something else interferes, it should also work on the actual stylesheet.
Forum: Fixing WordPress
In reply to: WooCommerce Product Sizes?When you set up your size attribute for the product, instead of small medium and large, simply type the specific sizes for your product. Unless you need to perform calculations with the numbers, I think this might be an option to a plugin.
Forum: Fixing WordPress
In reply to: Forever theme right side bar on the bottomIt looks like #primary (which is the main column) has a width of 100%. Simply reduce this to a smaller percentage, like 50% (just try out different numbers), and the sidebar will flip back into place.
Forum: Fixing WordPress
In reply to: Forever theme right side bar on the bottomHi, I can’t see what happened because you haven’t posted a link to your blog. However, it sounds like one of those cases in which the sidebar doesn’t fit into the space left by the main column and this is why it displays at the bottom. Trying reducing either the width of the main column or of the sidebar and see if the latter goes back into place.
Forum: Themes and Templates
In reply to: How to align flag icons to left side of headerHi,
You need to find this rule in style.css: .qtrans_language_chooser li {}
Simply delete float:right; and the flags should move to the left.
I hope it helps.
Forum: Themes and Templates
In reply to: [Theme Junkie] Change CSS, please help me!Hi, now the page has loaded properly and I’ve been able to access your site with firebug. You need to add width:260px; to the header and width:100%; to inner-wrap. Then you need to change the margins of the searchbox (#header-search) which need to be 31px 30px 0 0;
Finally, you need to adjust the #secondary-nav by adding: right:0; and left:0;I hope this helps. If it does, please mark this thread as resolved. Thanks.
Forum: Themes and Templates
In reply to: [Theme Junkie] Change CSS, please help me!Hi, your site takes ages to fully load. I think you could add a width to the header which is equal to .inner-wrap. I think it’s crucial to improve the site loading speed, though: find out what it depends on.
Forum: Themes and Templates
In reply to: Center the Nav menuPlease, post a link to your site so that I might be able to help you. Thanks.
Forum: Themes and Templates
In reply to: Moving Sidebar Next to ArchiveI think this is a viable solution:
The .sidebarnone class should be in the header template (I think). Therefore create a new header template and call it header-new.php or header-whatyoulike. Copy the contents of the original header.php file and delete the .sidebarnone class. Save the file and then, in archives.php, replace<?php get_header(); ?>
with
<?php get_header(‘new’); ?>
The new header should apply only on the archives page
Forum: Themes and Templates
In reply to: Moving Sidebar Next to ArchiveThen you need to create a more specific template for this using the same markup (without the sidebarnone class) and a different name.
Forum: Themes and Templates
In reply to: Moving Sidebar Next to ArchiveHi,
I don’t think it’s got to do with the html markup, but with the archive’s column spanning the fullwidth of the page.You’ve got:
.sidebarnone #left-column {
float: none;
width: 100%;
}In fact, the content-container has the .sidebarnone class. I think that, if you get rid of that class, things should work out as expected.
Forum: Themes and Templates
In reply to: Login buttonHi, you just need to create a class that uses the same styles as the login button. I think it’s the yellow button. The style would be:
.login-link { background: -moz-linear-gradient(center top , #F8BB49 0%, #F7941D 100%) repeat scroll 0 0 rgba(0, 0, 0, 0); border: 1px solid #E38427; box-shadow: 0 0 2px #F9C14F inset; color: #FFFFFF; text-shadow: 0 1px 1px #9B4600; border-radius: 5px; font-family: Arial,Helvetica,sans-serif; font-size: 18px; font-style: italic; font-weight: bold; padding: 8px 24px;
}`
Then add this class to the link.
Double-check this and see if it works.Forum: Themes and Templates
In reply to: Login buttonSorry, the code part didn’t render. I try again:
<code><a href="/login">Login</a></code>