and sub

User 78051 Photo


Registered User
201 posts

Just wondering what I have missed that would stop the sub nav here http://prntscr.com/77cb6b from being indented?

Thanks

Jamie
User 187934 Photo


Senior Advisor
20,196 posts

Looks like you have no styling assigned to it.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 78051 Photo


Registered User
201 posts

But how do you do that in RSD Eric? I can only see how to style the main <ul> but not the sub one
User 187934 Photo


Senior Advisor
20,196 posts

Click on each line and edit the list item
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 78051 Photo


Registered User
201 posts

Sorry to be thick, but how does that work? Surely that just changes a <li> item within the top level <ul>?
User 187934 Photo


Senior Advisor
20,196 posts

I guess I'm not sure what your after then.
Can you share a link?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 78051 Photo


Registered User
201 posts

Unfortunately not as its behind a holding page.

Basically, if you have below structure, the sub bullets are indented - thats what I am trying to work out how to do with RSD because at the moment I cant see how to do this - only how to style the top level of the list

<ul>
<li>bullet 1</li>
<li>bullet 2</li>
<li>bullet 3
<ul>
<li>sub bullet 1</li>
<li>sub bullet 2</li>
<li>sub bullet 3</li>
</ul>
</li>
<li>bullet 4</li>
<li>bullet 5</li>
</ul>

User 187934 Photo


Senior Advisor
20,196 posts

Use a HTML element or drop the UL and use a text element several times.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 271657 Photo


Ambassador
3,816 posts

Will RSD let you add a class and styling to the sub list? Like click on or highlight the sub <ul> tag, name it something different and assign the needed list properties?
Or, could you do 2 <ul>s with a different class for each (one indented), then insert one into the other?
<ul class="nav-main">
<li>bullet 1</li>
<li>bullet 2</li>
<li>bullet 3
----<ul class="nav-sub">
------<li>bullet 1</li>
------<li>bullet 2</li>
------<li>bullet 3</li>
----</ul> ...(end nav-sub)
<li>bullet 4</li>
<li>bullet 5</li>
</ul>...(end nav-main)
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
User 78051 Photo


Registered User
201 posts

hey paintbrush. Thanks for your reply. Thing is that in html by default, an unstyled sub list nested within a parent gets indented automatically. That doesnt seem to be happening here. And in a dynamic environment, to expect a client to be able to either remember or know how to add the class/id to the sub isnt overly realistic :(

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.