What is written first in the markup? Do you have a link to the page in question, or could you post a snippet?
And yes a element can be targeted regardless of if you have defined a class or id. I suggest you look into css psuedo classes, grouping, and selectors.
Here are a few examples:
Target the first child list in any list item
Code:
ul li > ul {
PROPERTIES
}
Target any span in a heading 1, heading 2 or heading 3 tag
Code:
h1 span, h2 span, h3 span {
PROPERTIES
}
Target any paragraph that has a class
Target the first strong tag in any paragraph that has a id
Code:
p[id] strong:first-child {
PROPERTIES
}
Target all images within the last paragraph in any div that has an id
Code:
div[id] p:last-child img {
PROPERTIES
}
the site in question is forestcitytravelball.com, and if you go to the directions page, that's what i was wanting, however if I go to locations page, it just has a line of text with three links.
I had a picture but when i added the picture it would take away the links, in addition to moving the first line above the picture.
dunno how much you can help if it's not visible, but thanks regardless.
I'm actually working on a redesign right now. As I learn more and remember more about all this I'm able to do a bit more. Last time i tried any of this was almost 2 years ago and it was never published.. so it will come with time I guess..
Also I knew you could say p.image kinda like i did on my site, but can you say p[image]? or are your brackets referring to a dot?