Displays strange
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Displays strange
Can i change the background to match my forums>? it looks bad on my forum
im using Cerulean Style template
im using Cerulean Style template
Last edited by dnfdarkness on 16 Nov 2012, 12:08, edited 1 time in total.
Displays strange
You have to take a look at how the style is build.
i dont have the edits for that specific style.
i dont have the edits for that specific style.
Displays strange
what part do i look at ? where does this mod pull ts information from? for the background ect >?
Displays strange
Search and compare the classes in the style.
It is this part of my mod that gives the background:
It is this part of my mod that gives the background:
<ul class="topiclist forums">
Displays strange
so i should point this to my style css ?? or point to a image ??Stoker wrote:Search and compare the classes in the style.
It is this part of my mod that gives the background:<ul class="topiclist forums">
Displays strange
If there is an image in the background it would be listed in the css stylesheet.
For
For
<ul class="topiclist forums">
look for the classes .topiclist and .forumsDisplays strange
.forabg {
background: #b1b1b1 none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
clear: both;
}
.forumbg {
background: #ebebeb none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
clear: both;
}
I found this in the common.css so how would i go about addding a background image to this ??
can i use html code like " background-image:url(images/bg1.jpg)"
.forabg {
background-image:url(images/bg1.jpg) <------ Like this ?
background: #b1b1b1 none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
clear: both;
}
background: #b1b1b1 none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
clear: both;
}
.forumbg {
background: #ebebeb none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
clear: both;
}
I found this in the common.css so how would i go about addding a background image to this ??
can i use html code like " background-image:url(images/bg1.jpg)"
.forabg {
background-image:url(images/bg1.jpg) <------ Like this ?
background: #b1b1b1 none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
clear: both;
}