Using WordPress.
I would like to change the style of my lists in my pages, well in the form of sidebar, right now I have a small circle with an arrow. I want to put it in a black circle on the main page and I want that there should be nothing before the text in the sidebar.
I have seen everywhere for code but can not find it. I thought this sidebar would be in 1 .php or sidebar2.php files, but I could not find anything.
I'm not familiar with WordPress copy, so I just try to point you in the right direction Unless someone can answer in a particular way.
This is usually CSS. I imagine that there are some external stylesheets like Style.css or Theme.css that provide style for your app. It can be found in the root of the app, a folder called a shell or something like that, or in the subfolder structure Represent the topic you are using
list-style: none;
will completely remove the tablets
list-style-type: square;
will create the bullet category
list-style-image: Url ("/ images / image.gif");
will use the image you provide.
Does the file file specify a style class for these elements? If not, the stylesheets are using their identity.
If you can find the stylesheet (s) for your site, you can find or create entries for the list of questions.
Example: ul.sidebar1
or # sidebar1 ul
(something with those lines), and modify the rules according to your preference.
Comments
Post a Comment