https://www.icyphoenix.com/viewtopic.php?f=36&t=1569&p=11609#p11609
-----------------------------------
Vortex
Sun 08 Apr, 2007 19:29

Re: Plz Help
-----------------------------------
[quote user="supostabme" post="11599"]OK here goes .I want to know how to make an image stop repeating. Do I change that in the css and if so which css file(location) and if not the css is it in the admin section somewhere cause i am obviously I am missing it. Ugh I want a forum but have know idea how to make it pretty cause i can't figure out how the images and the code work together.If anyway know where i can get tutorials on this stuff I will go away and stop bugging poeple  with all these dumb newb questions I promise .lol :oops:[/quote]


You find it in the css of you template. I don't know what image you are talking about :mricy: but in css you can make an image stop repeating with the css attribute "no-repeat"


For example, a background image for your page:


[code linenumbers=false]body{
	background: url('url/url/img.jpg') no-repeat;
}[/code]


you also have repeat-x and repeat-y to force it repeating only orizontally or vertically ;)


I order to work to an Icy template, you have a clear example in [b]templates/mg_themes/style_icy.css[/b] :


[code linenumbers=false]/* header */
.forum-header {
	background: #E8EEF8 url(images/ice/bg_top_100.jpg) top left repeat-x;
	padding: 0;
}[/code]


Just change repeat-x with no-repeat and your image will not repeat anymore (watch out for "top left" that are the alignmente of the image)



(Just to be sure: [b]the code I provided is meant to be an example. You don't have to modify that[/b]... I don't know what image you are talking about )


