Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter CSMajor

    (@csmajor)

    It looks like those settings are going to change the number of posts on my home page as well, not just the links on my sitemap…?

    Thread Starter CSMajor

    (@csmajor)

    Most of those are really old. The first one is from 6 years ago. How do I know they’re not going to destroy my Web site?

    It would be better to have the functionality built into WordPress.

    Thread Starter CSMajor

    (@csmajor)

    I will look at it. I don’t think I can add any plugins. Can I just add the zip file as media?

    Forum: Fixing WordPress
    In reply to: Menu font bold

    I don’t see anything that looks off, but I am not familiar with the template you are using. If the template is inheriting styles, the change could affect other things.

    You might have a syntax error in the code that you changed as well. Make sure the semicolons are correct, etc…

    You can try undoing the change to confirm if the text actually changed.

    The class you changed was pretty high up in the template, you also might want to try moving the change to the class on 486. It might work better.

    .main-navigation a {
    	display: block;
    	text-decoration: none;
            font-weight: bold !important;
    }

    Edit:
    I don’t doubt that the template is acting strange, it appears that the template is broken. This code isn’t correct:

    <div class="textwidget">Ajanvaraus hoitoihin mieluiten puhelimitse <br>0500 454512. <p><br>Sähköposti: liisa(at)liisakarkola.fi
    <p><p>
    Hoitohinnat 50 €/käynti
    <p>

    It also appears that there is a forward slash in the text: “€/käynti”, but I can’t tell because I don’t speak the language. If that is a forward slash, it might destroy the layout… HTML codes should be used instead.

    Forum: Fixing WordPress
    In reply to: Menu font bold

    It’s hard for me to tell without access to the Web site, but this should be on line 479 of style.css:

    .main-navigation li {
    	float: left;
    	position: relative;
    	padding: 5px 20px;
    	height: 35px;
    }

    I would try changing it to the following:

    .main-navigation li {
    	float: left;
    	position: relative;
    	padding: 5px 20px;
    	height: 35px;
            font-size: 30pt !important;
    }

    See what happens.

    If it works, it would probably look better, if you set the weight, instead of the size:

    .main-navigation li {
    	float: left;
    	position: relative;
    	padding: 5px 20px;
    	height: 35px;
            font-weight: bold !important;
    }
    Forum: Fixing WordPress
    In reply to: Menu font bold

    Please post the CSS you changed, and the modifications you made.

    Thread Starter CSMajor

    (@csmajor)

    I don’t think I have any plugins or themes. I converted the favicon to *.png, and it looks like it’s working now, but I can’t tell because the favicons are cached and I can’t clear it.

    Can you check my Web site and see if the icon shows up for you now?

    My Web Site

    Thanks.

    Thread Starter CSMajor

    (@csmajor)

    I don’t think I have any plugins or themes. I converted the favicon to a *.png, and it looks like it’s working now, but I can’t tell because the favicons are cached, and I can’t clear it.

    Can you check to see if you can view my custom icon now?

    My Web Site

    Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)