I'm using Ari 1.1.2 and my site is http://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?
I'm using Ari 1.1.2 and my site is http://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?
add this somewhere to style.css of your theme:
.logo h1 { text-indent: -9999px; }
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 http://www.w3schools.com/css/
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!
You must log in to post.