Forum Replies Created

Viewing 15 replies - 601 through 615 (of 686 total)
  • Forum: Plugins
    In reply to: Text Widget with Scrollbar?

    Hi,

    Yes, it’s possible !
    Here is the code to use in a text/html widget :
    The overflow attribute is here to say ‘allow a scrollbar to see more content‘ in the 150 pixels of Height.

    <div style="overflow:auto;height:150px;">
    <p>[First entry and a really long one to see how it handles a long line]
    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
    <p>Second entry</p>
    <p>Third entry</p>
    <p>Fourth entry</p>
    <p>Fifth entry</p>
    <p>Sixth entry</p>
    <p>Seventh entry</p>
    <p>Etc Etc...</p>
    </div>

    OK…
    I saw what is the issue. You can set the Background-attachment as ‘fixed’, in this case you need to increase the Height to 1200 Pixels because the screens of the users may be 1200 Pixels maximum.

    Otherwise (with a ‘scroll’ background-attachment) :
    You will need a ‘middle’ background, in case of more content.

    The Background here http://www.shrdshd.com/home/wp-content/themes/mystique/images/bg.png, you must place it into your ‘footer’ instead of the BODY.

    The Background here http://www.shrdshd.com/home/wp-content/themes/mystique/images/header.jpg, you must place it into you ‘header’. It’s already done.

    But you need a vertical-repeated background in the middle.

    Wait, I’m checking.

    Hi,

    You told about the black squares (1 on the left and 1 on the right) ???

    In plus, I saw your PHP Template are “HTML 5” !!!
    “HTML 5” is an experimentation for the moment in the web…

    You should use “XHTML 1.0 Transitional” like my website.

    Hi,

    Difficult to do this… Perhaps you need to assign a PHP template to the page ‘parentcategory’ in which you place the PHP request that call the subcategory to display. If it’s not a page you’ve created, you need to change something in the WordPress installation (in wp-admin or wp-includes), this is not recommended because when you’ll update your WordPress release, all the new parameters will disapear.

    But personaly, That’s why I don’t use Subcategories !
    I realized that it was not useful in my case.
    I’ve deleted all the SubCategories to create single Catergories (all my catergories are childs/Parents).

    First try to go here :

    http://validator.w3.org/

    To evaluate the number of errors that the Validator finds.
    Put the entire URL of your site (eg: http://google.fr/)
    and click ‘Check’

    Then see what sorts of error are critical.

    Hummmmmmm… Difficult !

    You need to know which HTML tags are not good with IE 8.0
    Then change them, but you must test each changes you made, otherwise, the other browsers may not interpret the fixed tags !!!

    As I often say as a french, “It’s like a snake eating his tail !”

    you encounter this message when you try to logon the dashboard ?!?!?
    Very strange…

    First, try with the default WordPress Theme.
    To do this, rename the Default Theme folder (eg: twentyten) with the Theme’s name you’re using actually.
    This will force the admin page to open using the default theme.
    Otherwise…

    At line # 81, there is only this caracter : {

    …So, I don’t want to test this plugin to solve your issue, because I don’t want the same issue on my site 😉

    But, what I can suggest you is :

    • First : upload again the files needed for this plugin. Perhaps the files are corrupted. If this doesn’t work
    • Second : Try to fix the PHP files, as the message say, there is perhaps something wrong at line # 81 (missing caracter or bad syntax
    • Cheers 😉

    Hi,

    I have the similar problem as you… With IE 8.0 !!!
    Did you try to use IE 7.0 ? Because for my website, it solves the issue.

    But whatever, all the people will run your website using IE8 will have the issue. It’s because the new browser engine in IE 8.0 misinterprets certain HTML tag.

    You can try to adapt your HTML code to solve this.

    Hi,

    Check you’ve this kind of header below at the TOP of your template .php file :

    <?php
    /**
     * @package WordPress
     * @subpackage Theme
     */
    
    /*
    Template Name: My Template
    */
    ?>
    Forum: Fixing WordPress
    In reply to: spacing the links

    Hi,

    Yes, it’s possible.

    Try to find this parameter in your style.css file :

    #sidebar li

    In this example below, I’ve added 7 pixels TOP, and 7 pixels BOTTOM 😉

    #sidebar li{
    	margin-top: 7px;
    	margin-bottom:7px;
    	margin-left: 0px;
    	margin-right: 0px;
    	padding: 0px;
    	list-style:none;
    	}

    Hi,

    You talk about this kind of class ? Imagine your post containers has the class called ‘entries’ :

    .entries img{
    border: 0;
    }

    In this example, it will affect all your images (only in your posts) and apply a border of 0 pixel.

    Try to change the effects you’ve chosen in the WP-CYCLE settings panel

    I saw this parameters in source file of site :
    It seems all of them are corrects…

    Rotator DIV ID :

    <div id="rotator">
    <img src="http://jha-techspace.com/wp-content/uploads/2010/10/flexfurn-resized.jpg" width="590" height="235" class="20101016055108" alt="" />
    <img src="http://jha-techspace.com/wp-content/uploads/2010/10/clientlist-resized.jpg" width="590" height="235" class="20101016055318" alt="" />
    </div>

    CSS :

    <style type="text/css" media="screen">
    	#rotator {
    		position: relative;
    		width: 590px;
    		height: 235px;
    		margin: 0; padding: 0;
    		overflow: hidden;
    	}
    </style>

    So, I don’t understand what’s happening !
    I’ve tested your site on IE8, I’ve the same thing than you.

Viewing 15 replies - 601 through 615 (of 686 total)