0
Welcome Guest! Login
0 items Join Now

Need assistance with CPU Throttling

  • Need assistance with CPU Throttling

    Posted 12 years 7 months ago
    • I'm trying to build a website using as little code as possible but I think I will run into a wall eventually.

      www.EverythingQuestion.com

      I'm having a throttling problem and 100% packet loss.

      I tried disabling all the modules and articles to see if that was the problem and wasn't an issue.

      Can anyone look to see if they can spot anything on the surface that would cause the issue?
    • David Goode's Avatar
    • David Goode
    • Preeminent Rocketeer
    • Posts: 17058
    • Thanks: 890
    • Web Designer and Host

    Re: Need assistance with CPU Throttling

    Posted 12 years 7 months ago
    • Not seeing a problem on site - using Firefox 15.0.1

    • Please search forums before posting. Please make sure your post includes the version of the CMS you are using and a link to the problem. Annotations on screenshots can also be helpful to explain problems/goals. Please use the "secure" tab for confidential information
  • Re: Need assistance with CPU Throttling

    Posted 12 years 7 months ago
    • It just seems to load really slow or maybe it's my network?
    • David Goode's Avatar
    • David Goode
    • Preeminent Rocketeer
    • Posts: 17058
    • Thanks: 890
    • Web Designer and Host

    Re: Need assistance with CPU Throttling

    Posted 12 years 7 months ago
    • Hi there,

      Loads ok for me - page speed 80/100 with compression off so not slow. Perhaps your network?

    • Please search forums before posting. Please make sure your post includes the version of the CMS you are using and a link to the problem. Annotations on screenshots can also be helpful to explain problems/goals. Please use the "secure" tab for confidential information
  • Re: Need assistance with CPU Throttling

    Posted 12 years 7 months ago
  • Re: Need assistance with CPU Throttling

    Posted 12 years 7 months ago
    • I guess that I need help with a specific line of code?
    • David Goode's Avatar
    • David Goode
    • Preeminent Rocketeer
    • Posts: 17058
    • Thanks: 890
    • Web Designer and Host

    Re: Need assistance with CPU Throttling

    Posted 12 years 7 months ago
    • Hi there,

      Let's go back to basics. CSS is there to help minimise code and make future changes easier.

      This is why there are default settings for items such as font-family and font-size. On the page you validated it appears that every quote has it's own element style.
      <p><span style="font-family: verdana, geneva; color: #0000ff;"><em><span style="font-size: 14pt;">Out of this world.&nbsp;</span></em></span></p>
      When the actual code would be more effective as...
      <p>Out of this world.</p>
      If you really need to have the font-family, font-size and color as set then create a new css line such as...
      p.bigblue {
           font-family: verdana, geneva;
           color: #0000ff;
           font-size: 14pt;
      }
      And then change your article text to...
      <p class="bigblue">Out of this world.</p>
      Alternatively you could ensure that page suffix is enabled in the template advanced section and then go to the menu item and in the parameters set the page suffix to bigblue. This would let you change the CSS to...
      .bigblue p {
           font-family: verdana, geneva;
           color: #0000ff;
           font-size: 14pt;
      }
      With page content then set as simple <p></p> tags... e.g. <p>Out of this world.</p> - Every paragraph on the page with suffix bigblue would be rendered using that one piece of CSS.

      Hope this helps 8)

    • Please search forums before posting. Please make sure your post includes the version of the CMS you are using and a link to the problem. Annotations on screenshots can also be helpful to explain problems/goals. Please use the "secure" tab for confidential information

Time to create page: 0.055 seconds