This is a discussion on "[SOLVED] My page numbers are falling off of my website!!" within the Web Page Design section. This forum, and the thread "[SOLVED] My page numbers are falling off of my website!! are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
[SOLVED] My page numbers are falling off of my website!!
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
Hello,
I would like to have a go at sorting out a problem on my website http://www.letsrent2me.com/list_properties.php All of the old pages for my website are being cut off at the edge and they need re-arranging. I don't really want to use a web designer and would like to have a go myself, does anyone know if this is achievable and if so what would be involved. I don't know much about web design but would like to learn by doing a few little jobs myself appreciate any help which you could give me, thks |
|
#2
|
|||
|
|||
|
Re: My page numbers are falling off of my website!!
moved to css forum
|
|
#3
|
||||
|
||||
|
Re: My page numbers are falling off of my website!!
Are you aware of CSS?
In your CSS folder there's a file called basic.css. You need to find the line
Last Blog Entry: The Google Misconception (Feb 3rd, 2008)
|
|
#4
|
|||
|
|||
|
Thanks a lot I will try that and let you know how I got on, really greatful to you for all your help.
|
|
#5
|
|||
|
|||
|
Hello again
I have managed to locate the basic css file which you mentioned and found the line which you quoted, currently it reads; .viewpageslinksbar{background:#A0CFFD;border-bottom:1px solid #4489AA;border-top:1px solid #72B3D1;margin-bottom:4px;} I just wanted to confirm with you before I change it, do i get rid of -bottom:4px;} and type width: 532px and also do i need to close it with the ;} Thanks |
|
#6
|
|||
|
|||
|
Re: My page numbers are falling off of my website!!
aso has said
replace it all with this
|
|
#7
|
|||
|
|||
|
I'm sorry... misunderstood I could only see the first part of the code in my browser but have now highlighted the whole code and will paste it in, thks once again for your help
|
|
#8
|
|||
|
|||
|
i've updated the file but it hasn't changed the page numbers, the right hand side of the website is wider..if i remember correctly last time i think the web designer had to put more properties per page, can you help?thks
|
|
#9
|
|||
|
|||
|
Re: My page numbers are falling off of my website!!
my suspicions are that this data is dynamically created via php or some other means, if that is so there could be some css within the php code itself that needs adjusting,
could you me if i am right |
|
#10
|
||||
|
||||
|
Re: My page numbers are falling off of my website!!
I'm not sure if this is a problem solver, but the links for each page don't have a space between them. Maybe make sure they have a space?
Also, I noticed all the page numbers are in a span with a class of "selector", I had a look at your CSS and there doesn't seem to be a class with that name, so maybe get rid of that span altogether? |
|
#11
|
||||
|
||||
|
Re: My page numbers are falling off of my website!!
That's unlikely because if there is any CSS/HTML within the PHP code it will always display in the HTML.
|
|
#12
|
|||
|
|||
|
I don't know anything about css or php i'm afraid, is there a way of knowing if there is css within the php code? Thank you both for your help but I think I will leave it as it is at the moment as I dont know anything about css and am unsure about how to insert a space between the pages or how to get rid of the span, unless it is a simple job and you could explain in very simple terms. I think I will read up on css to get a better understanding of the terminology as at the moment I haven't got a clue.
|
|
#13
|
||||
|
||||
|
Re: My page numbers are falling off of my website!!
62vye, I can't see the changes you've made.
Are you sure you modified the basic.css file with the correct changes and re-uploaded it? If you do exactly as I said in my original post, and upload the modified file, then we can see the changes and recommend another fix if needed. You don't have to know anything about CSS, PHP or HTML. Just copy and paste-replace the line I originally quoted.
Last Blog Entry: The Google Misconception (Feb 3rd, 2008)
|
|
#14
|
|||
|
|||
|
Re: My page numbers are falling off of my website!!
Seems you have 34 pages listed in:<div class="viewpageslinksbar"> Remove page numbers 21 -->34 from your HTML. Right after that you have <span class="selector"> There is NO .selector class in your stylesheet Add to this class: .viewpageslinksbar {background:#A0CFFD;border-bottom:1px solid #4489AA;border-top:1px solid #72B3D1;margin-bottom:4px; |