Forum Replies Created

Viewing 4 replies - 91 through 94 (of 94 total)
  • Forum: Fixing WordPress
    In reply to: change page number

    Can U post a link to your site, please?

    Actually those seem to be the post IDs, not know why they’re there.
    You’re using a custom theme, so can you post also your content.php but also content-(the post-format you used) if you used post formats in your theme?

    Last thing…
    I saw in your child theme css you’ve put

    .entry-header .entry-title a {
    	color: #666699;
    	font-family: helvetica;
    }

    try to change this to

    .entry-header .entry-title {
    	color: #666699;
    	font-family: helvetica;
    }

    you’re actually styling just the title, not an <a> link as you wrote in you css.

    Hi Violet,
    ok let’s try to fix it step by step.
    If you have firebug installed and active, you’ll notice an arrow from the tools available. pick the arrow to select an element, and select one title of your site with that firebug arrow; firebug gives you some css details on the style tab panel.

    You’ll notice it highlights something like

    .entry-header .entry-title {
        font-size: 1.57143rem;
    }

    wich is the css property actually set for the page titles.

    within firebug you can add properties and see the result in realtime.
    this is the big thing about Firebug, and the reason why WPyogi suggested it.

    then you just have to add the new property to your child theme stylesheet, and you can do it as you prefer via ftp or with WP files editor.

    Let me know if you’re in doubt, I’ll be glad to help you as I can.

Viewing 4 replies - 91 through 94 (of 94 total)