Forum Replies Created

Viewing 14 replies - 91 through 104 (of 104 total)
  • Sorry WPyogi, I had good intentions as I’ve seen rtatham has some trouble in sorting out the problem. I’ll keep the conversation here then

    Yes, just how I imagined, the CSS file doesn’t give any height and width for the header because they are already given in the html. If the custom.css doesn’t work the file you must modify is definitely header.php. Have you created a child theme? This is necessary, or any modification made will be deleted at the next theme update.
    If you don’t know how to do it create an admin user and send me the credentials. I’ll do it for free of course. My address is [email redacted]

    Your header width and height are “hardcoded” into the html. This is what I’ve found:

    img src="http://snailfactorydesigns.net/wp-content/uploads/2013/10/cropped-Logo.jpg" width="1060" height="326" alt="">

    If you don’t have a theme option to change the header dimensions you must either add a CSS rule to your style.css or modify the php file that generates that code.
    The easiest is to add a CSS rule but since this is an inline style I’m not totally sure it can work. Try it anyway
    Provided you have already made a child theme, you must add the following code to your custom css:

    #header a img {
    height: NNpx !important;
    }

    replace NN with the desired height in pixels.
    Let me know how it goes.

    I don’t see any white background on that menu, I see instead a gradient from dark red to a slightly lighter red.
    In any case, if you want to change that color you must first create a child theme, and then go to edit css and add the following instruction. The meaning should be clear even if you don’t know CSS. Background is the directive that changes the background. However, there are three different instructions, one for the Chrome browser (webkit), one for Firefox (moz) and one for IE. They all create the gradient that I see. You must change the colors of the gradient, if you use Firebug on Firefox or the developer tools on Chrome you should be able to test it.

    #navmargins {
    background: #340b0a;
    background: -webkit-gradient(linear,left top,left bottom,from(#0f0201),to(#340b0a));
    background: -moz-linear-gradient(top,#0f0201,#340b0a);
    background: transparent\9;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#0f0201′,endColorstr=’#340b0a’);
    box-shadow: 0 1px 2px #000;
    -moz-box-shadow: 0 1px 2px #000;
    -webkit-box-shadow: 0 1px 2px #000;
    }

    Have your tried by simply uploading a slimmer image? Often it works.

    You should give more information, or no one will be able to help you. Which themes were you trying to use? Have you already installed some plugins? Sometimes there are compatibility problems between plugins and themes. You should try to disable all your plugins and then install the theme to see if the problem comes from some plugin.

    I just looked at your website, and the header is totally messed up on my PC. Is it because you’re working on it, or you simply didn’t notice? The three items with the star (should this be a menu?) are over the header, hiding part of the text

    Sorry, also the theme name is mandatory, but here you can write whatever you want

    The only thing that is mandatory and must absolutely be correct in to the style.css file of the child theme is the name of the parent theme in the “template” field. If you do this wrong you won’t have your child theme. I know from personal experience 🙂
    Check it out

    A child theme inherit all of the files and configurations of the parent theme but you usually can override any of the parent theme configurations at your will provided you know what to touch.
    With the child theme, you won’t lose any of your customization when the parent theme is updated.

    If you uploaded your images through the media library they won’t be canceled or overwritten. You “lose” them only when you activate che child theme if they’ve been uploaded via ftp in the directory “images” in your parent theme’s directory. In that case you should move them in your child’s theme directory or upload them via the media library

    I’ve tried with this CSS code, and the situation has improved a lot.
    There are strange problems when manipulating the CSS code. When you center the #nav-bottom-wrap the background becomes transparent, and there’s no way to get the original blue color back. So, I had to change the background color of the #nav-menu2.
    There’s always that empty blue space on the right side of the menu, and I cannot get rid of it.

    Add this code to your custom CSS rules.

    #nav-bottom-wrap {
    border: none;
    float: center;
    }

    #nav-menu2, #nav-menu2 .menu-header, div.menu {
    margin-left: 0px;
    }

    #nav-menu2 {
    background-color: #337eff;
    }

    Have you tried looking for a theme with similar layout but that is still supported? I think this would be the best soultion

    Thread Starter Giulio Daprela

    (@daprela)

    Found, it’s a premium plugin that republishes on the blog articles from Wikipedia. Nothing to do with a slideshow. I’ll try to contact the developer to see if he can sort out the problem.

    Thank you very much

    Thread Starter Giulio Daprela

    (@daprela)

    http://oneclicklingerie.com/blog/

    Both the slides should send to the root domain, which is the store

Viewing 14 replies - 91 through 104 (of 104 total)