• Resolved Raunchy Mike

    (@raunchy-mike)


    I’m using Ari 1.1.2 and my site is https://www.raunchymike.com. On the left top corner the text “Raunchy Mike” is visible and I want to delete this (or change the text color to white, as this will have the same effect).

    Can anyone help me?

Viewing 4 replies - 1 through 4 (of 4 total)
  • add this somewhere to style.css of your theme:

    .logo h1 { text-indent: -9999px; }

    Thread Starter Raunchy Mike

    (@raunchy-mike)

    Thanks for your quick reply! I’ve added it in here, but nothing has changed.

    /* Reset
    ——————————————— */
    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
    .logo h1 { text-indent: -9999px; }
    }

    when i said ‘add this somewhere’ i meant without violating the css syntax – you added the new style into the middle of an existing one;

    repair this section:

    vertical-align: baseline;
    	border: 0;
    	outline: 0;
    	background: transparent;
    .logo h1 { text-indent: -9999px; }
    }

    to look like:

    vertical-align: baseline;
    	border: 0;
    	outline: 0;
    	background: transparent;
    }
    .logo h1 { text-indent: -9999px; }

    edit: you might need to clear the browser cache to get the changes to show immediately – for instance by pressing ‘CTRL F5’ on windows browsers.

    if you want to continue customising the formatting of your site, please work through the basics of css, for instance with a tutorial such as https://www.w3schools.com/css/

    Thread Starter Raunchy Mike

    (@raunchy-mike)

    Wow, that worked! Many thanks for your support!

    I’ll dive into the tutorial…

    I posted 3 other questions, if you have any time left…

    Thank you so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Delete site name in Ari theme’ is closed to new replies.