Forum Replies Created

Viewing 20 posts - 12,661 through 12,680 (of 14,500 total)
  • Author
    Posts
  • in reply to: Menu Background #7789
    Sakin
    Keymaster

    @Samson81: Yes that’s possible. Just add background image in the menu. Use the CSS like below and add it in “Appearance => Theme Options => Custom CSS” box.
    `
    #header-menu {
    background-image: url(“http://dev.webermfg.ca/wp-content/uploads/2013/04/carbon_fiber2.jpg”);
    }`

    in reply to: Footer and White Space #7787
    Sakin
    Keymaster

    @rawb_in: To decrease the white space between the Footer Widgets and Featured Post Slider. Decrease the padding top in the following css and add it in “Appearance => Theme Options => Custom CSS” box.
    `.blog #main { padding-top: 40px; }`

    Actually the footer widget is to be show in all pages. But the following css will help you to hide it in other pages and will only show in your homepage.
    `
    #footer-sidebar { display: none; }
    .blog #footer-sidebar { display: block; }
    `

    in reply to: Post page not loading #7764
    Sakin
    Keymaster

    @trentbuzz: For Catch Everest Pro additional features, you can check out this page http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Footer editor not working #7763
    Sakin
    Keymaster

    @karinschultz: Great. But we are not sure about the plugin. You have to search for plugin in http://wordpress.org/extend/plugins/ and use it. If you find problem in plugin then you should first ask the plugin developer for support and if they ask us to change anything then we are ready to make it compatible.

    in reply to: slider options? #7762
    Sakin
    Keymaster

    @karinschultz: When you click on insert into post for the image, I think you choose thumbnail. So for example you have added the following image
    `http://www.iwritegreatcopy.com/wp-content/uploads/2013/04/iwritegreatcopyimage1-976×313-300×96.jpg`
    instead of
    `http://www.iwritegreatcopy.com/wp-content/uploads/2013/04/iwritegreatcopyimage1-976×313.jpg`

    So, you can either manually copy and paste the image url or when you click on insert into post, make sure you have selected “Full Size”.

    in reply to: Permalinks #7757
    Sakin
    Keymaster

    @pt mannik: This is not theme related issue and it’s the issue with your server. So, please ask your server support.
    Please check your .htaccess file and see this for more details http://codex.wordpress.org/Using_Permalinks

    in reply to: Search Widget #7756
    Sakin
    Keymaster

    @aka10385: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    `#header-right #s { color: #fff; }`

    in reply to: Header Image #7754
    Sakin
    Keymaster

    @Samson81: You can add like the following css in your “Appearance => Theme Options => Custom CSS” box.
    `#hgroup-wrap { background: url(http://dev.webermfg.ca/wp-content/uploads/2013/04/carbon_fiber2.jpg) repeat scroll 0 0; }`

    in reply to: Problem image not showing on home but showing in post #7753
    Sakin
    Keymaster

    @Emmanuel_J: I don’t see any problem in your site. It is showing same in Homepage http://www.emmanueljaime.com/ and singular post http://www.emmanueljaime.com/?p=16

    in reply to: menu navigation issues with mobile browsers #7728
    Sakin
    Keymaster

    @bobbafett: I check your site from my mobile device it is showing home as main.

    in reply to: Bold content #7727
    Sakin
    Keymaster

    @travellingking1: Ok I need to check your site admin section. So, I will email you privately. Please check your email.

    in reply to: Customized CSS Questions #7723
    Sakin
    Keymaster

    @iJON: Yes every theme has different div id and classes. The css is controlled through ID and CSS. That is why always post your site URL when you ask question. I am giving you the following css supposing that you are using Simple Catch Free theme as you have used this forum.

    Just add the following CSS in “Appearance => Theme Options => Custom CSS” box
    `#main .entry-title a:hover { color: #f9854a; }`

    in reply to: Problem: Featured Post #7722
    Sakin
    Keymaster

    @obiokere: The option that you have asked in not supported by this theme. This theme is not designed like that. You should have choose theme like Simple Catch Pro.

    Anyway, I can giving you the code but I am not 100% sure about it. So, if this doesn’t work then you might consider hiring css developer.

    Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    `.home .entry-summary img { display: inline-block; float: left; margin-right: 5%; max-width: 30%; }`

    in reply to: Blog post issues #7721
    Sakin
    Keymaster

    @karinschultz: http://www.iwritegreatcopy.com
    I have noticed on the upgrade that after the post but before the comment section, there is a line which gives the category information. As I have the breadcrumbs at top, I don’t need this at the bottom. How do I suppress this?
    — Just add the following CSS in “Appearance => Theme Options => Custom CSS” box
    `.single footer.entry-meta { display: none; }`

    Also, I would like to have the comment box left justified. How can i do this? As well, there is a “comment” tag outside the comment box. This is redundant, how can I remove this?
    — Sorry, I don’t understand this what you mean.

    in reply to: Footer Sidebar #7720
    Sakin
    Keymaster

    @Matteus: Header and Footer are always same in all pages. There is no option for footer widget to show only in homepage. But there is css from which you can hide it. So, send me your site url and tell me what exactly you don’t want to show in other pages.

    in reply to: Footer and White Space #7719
    Sakin
    Keymaster

    @rawb_in: Yes you can decrease the white space between the Footer Widgets and Featured Post Slider. That is not a problem. But you cannot remove show footer widget only in homepage. Footer means it will be on all page. But there is a css trick that you can use to hide it.

    So, first send me your site URL.

    in reply to: slider images width change randomly #7718
    Sakin
    Keymaster

    @Afsoon: Just add the following css in “Appearance => Theme Options => Custom CSS” box.
    `#hgroup-wrap { padding-bottom: 0; }`

    in reply to: Menu – Permalinks #7717
    Sakin
    Keymaster

    @karinschultz: This Simple Catch Pro theme is responsive design. So, either you can disable responsive design from “Appearance => Theme Options => Responsive Design”. or you have to adjust for smaller screen. I think you scroll down your browser little bit or checked it from other devices. So, the complete set of css can be as following.
    `
    #access ul li a { padding: 0 23px; }
    #access ul li:last-child { border-right: none;}
    #access ul li:last-child a { padding: 0 20px 0 21px; }
    /* For Smaller screen with max width 1100px */

    @media
    screen and (max-width: 1100px) {
    #access ul li a { padding: 0 14px; }
    #access ul li:last-child a { padding: 0 15px 0 16px; }
    }
    `

    I also see the issue in search button. Please add the following css
    #branding .searchform button { width: auto; }

    #branding .searchform button { width: auto; }

    in reply to: Bold content #7716
    Sakin
    Keymaster

    @travellingking1: I don’t see any bold text there. You can check in if you have any text in bold or not by viewing your post in text mode bold code should be wrapped with strong code which will be like this
    `This is bold text`

    See this for more about visual editor http://en.support.wordpress.com/visual-editor/

    in reply to: How to remove some things #7715
    Sakin
    Keymaster

    @impresnet: Sorry I don’t understand this question.

Viewing 20 posts - 12,661 through 12,680 (of 14,500 total)